-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.73 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.73 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
{
"scripts": {
"lint:eslint": "eslint --ext .js,.html .",
"format:eslint": "eslint --ext .js,.html . --fix",
"lint:prettier": "prettier \"**/*.js\" --list-different || (echo '↑↑ these files are not prettier formatted ↑↑' && exit 1)",
"format:prettier": "prettier \"**/*.js\" --write",
"lint": "npm run lint:eslint && npm run lint:prettier",
"format": "npm run format:eslint && npm run format:prettier",
"test": "mocha test/*.js --require esm",
"coverage": "nyc npm run test",
"debug": "DEBUG=* node start.js",
"start": "node start.js"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.0.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.0",
"husky": "^3.0.0",
"lint-staged": "^9.1.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"sinon": "^7.3.2"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"name": "node-express-es6-template",
"version": "1.0.0",
"description": "Node express es6 modules (using esm) templates",
"main": "start.js",
"repository": {
"type": "git",
"url": "git+https://github.com/sanguino/todo-auth.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sanguino/todo-auth/issues"
},
"homepage": "https://github.com/sanguino/todo-auth#readme",
"dependencies": {
"@hapi/boom": "^8.0.1",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"esm": "^3.2.25",
"express": "~4.16.1",
"express-validation": "^1.0.3",
"joi": "^14.3.1",
"morgan": "^1.9.1"
}
}