generated from aicore/template-nodejs-server
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.97 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.97 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@phcode/extension-service",
"version": "1.0.8",
"description": "Extension and themes management service for Phoenix/Brackets",
"main": "src/index.js",
"type": "module",
"keywords": [
"phcode.dev",
"Phoneix code",
"extension",
"themes",
"publish",
"service",
"CI"
],
"scripts": {
"eslint": "npm run lint",
"eslint:fix": "npm run lint:fix",
"lint": "eslint --quiet src test",
"lint:fix": "eslint --quiet --fix src test",
"prepare": "test -d node_modules/husky && husky install || echo \"husky is not installed\"",
"test": "npm run test:unit && npm run test:integ",
"test:unit": "APP_CONFIG=./test/unit/utils/.app.json mocha test/unit/*.spec.js test/unit/**/*.spec.js test/unit/**/*.spec.js test/unit/**/**/*.spec.js --timeout=3000",
"setupIntegTestConfig": "node ./test/integration/setupTestConfig.js",
"test:integ": "npm run setupIntegTestConfig && TEST_ENV=integ APP_CONFIG=./src/testConfig.json 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",
"serve": "APP_CONFIG=./src/app.json node src/index.js",
"serve:dev": "APP_CONFIG=./src/app.json nodemon src/index.js"
},
"files": [
"src"
],
"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/phcode-dev/extensionService/issues"
},
"homepage": "https://github.com/phcode-dev/extensionService",
"devDependencies": {
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"c8": "7.14.0",
"chai": "4.4.1",
"cli-color": "2.0.4",
"documentation": "14.0.3",
"eslint": "8.57.0",
"glob": "9.3.5",
"husky": "8.0.3",
"mocha": "10.4.0",
"nodemon": "2.0.22"
},
"dependencies": {
"@aicore/cocodb-ws-client": "^1.0.20",
"@aicore/libcommonutils": "1.0.20",
"@aws-sdk/client-s3": "^3.264.0",
"@aws-sdk/lib-storage": "^3.278.0",
"@fastify/static": "^6.9.0",
"@octokit/rest": "^19.0.7",
"fastify": "4.26.2",
"follow-redirects": "^1.15.2",
"node-fetch": "^3.3.0",
"node-stream-zip": "^1.15.0",
"semver": "^7.3.8"
}
}