generated from stephen-shopopop/nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.63 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.63 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
{
"name": "node-template",
"version": "1.0.0",
"description": "nodejs template with js-standard",
"main": "index.js",
"private": true,
"engine": {
"node": ">=14.16.1",
"npm": ">=6.14.12"
},
"os": [
"darwin",
"linux",
"win32"
],
"repository": {
"type": "git",
"url": "git+https://github.com/{repository}.git"
},
"bugs": {
"url": "https://github.com/{repository}/issues"
},
"contributors": [
"stephendltg"
],
"scripts": {
"start": "node src/index.js",
"test": "jest --reporters=default",
"test:i2ee": "mocha --exit -t 10000 -R spec ./tests/*.test.js",
"lint": "npx standard --verbose | snazzy",
"lint:fix": "npx standard --fix",
"release": "standard-version",
"prerelease": "standard-version -- --prerelease",
"fix": "standard-version -- --release-as minor",
"doc": "rimraf out && jsdoc src"
},
"simple-git-hooks": {
"pre-commit": "npx commitlint --edit $1 & npm run lint"
},
"standard": {
"ignore": [
"out/",
"jest.config.js"
]
},
"bin": {
"my-node-app": "./bin/www"
},
"keywords": [
"template"
],
"author": "tech<tech@example.com>",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"chai": "^4.3.4",
"jest": "^27.5.0",
"jsdoc": "^3.6.10",
"mocha": "^9.2.0",
"mocha-chai-jest-snapshot": "^1.1.3",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.7.0",
"snazzy": "^9.0.0",
"standard": "^16.0.4",
"standard-version": "^9.3.2",
"supertest": "^6.2.2",
"xml2json": "^0.12.0"
},
"dependencies": {}
}