This repository was archived by the owner on Jun 21, 2022. It is now read-only.
generated from aicore/template-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.83 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
{
"name": "template-nodejs",
"version": "1.0.0",
"description": "Template for nodejs with unit gulp build, test, coverage, code guardian, github and Other defaults",
"main": "index.js",
"scripts": {
"eslint": "npm run lint",
"eslint:fix": "npm run lint:fix",
"lint": "eslint --quiet src test --ext .ts",
"lint:fix": "eslint --quiet --fix src test --ext .ts",
"prepare": "husky install",
"test": "npm run test:unit && npm run test:integ",
"test:unit": "mocha test/unit/**/*.spec.js --timeout=3000",
"test:integ": "mocha test/integration/**/*.spec.js --timeout=3000",
"printReportsLink": "echo Detailed unit test coverage report: file:///$(pwd)/coverage-unit/index.html && echo Detailed integration test coverage report: file:///$(pwd)/coverage-integration/index.html",
"cover": "npm run cover:unit && npm run cover:integ",
"cover:unit": "c8 -c .nycrc.unit.json npm run test:unit && npm run --silent printReportsLink",
"cover:integ": "c8 -c .nycrc.integration.json npm run test:integ && npm run --silent printReportsLink",
"buildonly": "gulp build",
"build": "npm run buildonly && npm run cover"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aicore/template-nodejs.git"
},
"author": "Arun, core.ai",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/aicore/template-nodejs/issues"
},
"homepage": "https://github.com/aicore/template-nodejs#readme",
"devDependencies": {
"@commitlint/cli": "16.1.0",
"@commitlint/config-conventional": "16.0.0",
"@typescript-eslint/eslint-plugin": "5.9.0",
"@typescript-eslint/parser": "5.9.0",
"c8": "7.11.0",
"chai": "4.3.4",
"eslint": "7.32.0",
"gulp": "4.0.2",
"gulp-typescript": "6.0.0-alpha.1",
"husky": "7.0.4",
"mocha": "9.1.3",
"typescript": "4.5.4"
}
}