-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.15 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.15 KB
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
57
58
59
60
61
62
63
64
65
{
"name": "@aicore/plugin-registry-backend",
"version": "1.0.4",
"description": "Template for nodejs with unit gulp build, test, coverage, code guardian, github and Other defaults",
"main": "src/app.js",
"type": "module",
"keywords": [
"backend",
"RestAPI",
"API",
"nodejs",
"unit",
"testing",
"mocha",
"chai",
"coverage"
],
"scripts": {
"eslint": "npm run lint",
"eslint:fix": "npm run lint:fix",
"lint": "eslint --quiet src test",
"lint:fix": "eslint --quiet --fix src test",
"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",
"build": "npm run cover",
"bumpPatchVersion": "npm --no-git-tag-version version patch",
"bumpPatchVersionWithGitTag": "npm version patch",
"release": "npm run bumpPatchVersionWithGitTag"
},
"files": [
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/aicore/plugin-registry-backend.git"
},
"author": "Ushmajit, core.ai",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/aicore/plugin-registry-backend/issues"
},
"homepage": "https://github.com/aicore/plugin-registry-backend#readme",
"devDependencies": {
"@commitlint/cli": "16.2.1",
"@commitlint/config-conventional": "16.2.1",
"c8": "7.11.0",
"chai": "4.3.6",
"eslint": "8.10.0",
"husky": "7.0.4",
"mocha": "9.2.1"
},
"dependencies": {
"@aicore/elasticsearch-lib": "^1.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"superagent": "^7.1.1"
}
}