This repository has been archived by the owner on Feb 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 2.06 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "database-assignment-3",
"version": "1.0.0",
"description": "",
"main": "generator/index.js",
"scripts": {
"transpile": "node generator/index",
"start:python": "python dist/database.py",
"serve:python": "npm run transpile && npm run start:python",
"compile:java": "javac dist/Database.java -J-Xmx4000m",
"start:java": "cd dist && java -cp .:postgresql-42.2.8.jar Database",
"launch:java": "npm run compile:java && npm run start:java",
"serve:java": "npm run transpile && npm run compile:java && npm run start:java",
"serve": "npm run serve:python",
"start": "npm run start:python",
"lint": "eslint generator",
"lint:fix": "eslint generator --fix",
"test:mocha": "mocha test/mocha --reporter spec",
"test:jest": "jest --rootDir test/jest",
"test:ava": "ava test/ava/*test.js --verbose",
"test:tap": "tap test/tap --no-timeout --no-coverage",
"test:tape": "tape test/tape/*.test.js",
"test:all": "npm run test:mocha && npm run test:jest && npm run test:ava && npm run test:tap && npm run test:tape",
"test": "npm run lint && npm run test:all",
"nyc": "nyc --reporter=html --reporter=text --reporter=lcov npm run test:jest",
"cover:coveralls": "nyc report --extension=ts --reporter=text-lcov | coveralls",
"cover:codecov": "nyc report --extension=ts --reporter=text-lcov > coverage.lcov && codecov",
"cover": "npm run cover:coveralls && npm run cover:codecov",
"commit": "git-cz",
"directory-tree": "dree parse . --dest doc/tree --options dree.config.json"
},
"author": "Euber Developer",
"license": "ISC",
"dependencies": {
"dree": "^2.1.11"
},
"devDependencies": {
"ava": "^2.4.0",
"chai": "^4.2.0",
"codecov": "^3.6.1",
"commitizen": "^4.0.3",
"coveralls": "^3.0.9",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.7.2",
"jest": "^24.9.0",
"mocha": "^6.2.2",
"nyc": "^15.0.0",
"tap": "^14.10.2",
"tape": "^4.11.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}