generated from aicore/template-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.27 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@aicore/cocodb-ws-client",
"version": "1.0.23",
"description": "Websocket client for cocoDb",
"main": "src/index.js",
"type": "module",
"keywords": [
"template",
"nodejs",
"unit",
"testing",
"mocha",
"chai",
"coverage",
"cocoDb"
],
"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 test/unit/**/*.spec.js --timeout=3000",
"test:integ": "mocha test/integration/*.spec.js 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",
"cover:unit": "c8 -c .nycrc.unit.json npm run test:unit && npm run --silent printReportsLink",
"vulnerabilityCheck": "echo Scanning for npm vulnarabilities && npm audit --prod",
"build": "npm run cover && npm run createJSDocs && npm run vulnerabilityCheck",
"createJSDocs": "node build/jsDocGenerate.js src docs/generatedApiDocs && git add docs",
"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/template-nodejs.git"
},
"author": "Charly, core.ai",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/aicore/cocoDbWsClient/issues"
},
"homepage": "https://github.com/aicore/cocoDbWsClient#readme",
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"c8": "10.1.3",
"chai": "5.1.2",
"cli-color": "2.0.4",
"documentation": "14.0.3",
"eslint": "9.16.0",
"glob": "11.0.0",
"husky": "9.1.7",
"mocha": "10.8.2"
},
"dependencies": {
"@aicore/libcommonutils": "1.0.20",
"ws": "8.18.0"
},
"optionalDependencies": {
"bufferutil": "4.0.8",
"utf-8-validate": "6.0.5"
}
}