-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.17 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
{
"name": "modern-node-package",
"version": "0.0.0",
"description": "Modern tech setup to build server-side Node.js packages",
"main": "src/index.js",
"repository": {
"url": "[email protected]:hemerajs/modern-node-package.git",
"type": "git"
},
"scripts": {
"precommit": "pretty-quick --staged && npm run lint && npm run test",
"lint": "eslint \"./src/**/*.js\" \"./test/**/*.js\"",
"lint:fix": "eslint --fix \"./src/**/*.js\" \"./test/**/*.js\"",
"format": "pretty-quick",
"test": "npm run lint && ava",
"test:watch": "ava -w",
"coverage": "nyc ava",
"coverage:html": "nyc ava && nyc report --reporter=html",
"coveralls": "npm test && nyc report --reporter=text-lcov | coveralls"
},
"engines": {
"node": ">=8"
},
"keywords": ["modern", "template"],
"author": "Dustin Deus (https://github.com/StarpTech)",
"license": "MIT",
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.1",
"eslint-config-hemera": "^0.0.6",
"husky": "^0.14.3",
"np": "^3.0.1",
"nyc": "^11.8.0",
"prettier-standard": "^8.0.1",
"pretty-quick": "^1.6.0",
"snazzy": "^7.1.1",
"standard": "^11.0.1"
}
}