-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 990 Bytes
/
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
{
"name": "node-seed",
"version": "0.0.14",
"description": "A skeleton for a typical NodeJS application",
"keywords": [
"node seed"
],
"main": "",
"scripts": {
"pre-commit": "npm test",
"lint": "eslint --fix -c .eslintrc.yaml .",
"jsdoc": "jsdoc -d .build/jsdoc -r src",
"prejsdoc": "rimraf .build/jsdoc",
"test": "npm run lint && npm run tests && npm run jsdoc",
"tests": "jest"
},
"pre-commit": [
"pre-commit"
],
"repository": {
"type": "git",
"url": "https://github.com/hwndept/node-seed.git"
},
"author": "Nikolay Shatalov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hwndept/node-seed/issues"
},
"homepage": "https://github.com/hwndept/node-seed",
"devDependencies": {
"eslint": "^7.31.0",
"jest": "^27.0.6",
"jsdoc": "^3.6.4",
"pre-commit": "^1.2.2",
"rimraf": "^3.0.2"
},
"dependencies": {
"nconf": "^0.11.3",
"nconf-yaml": "^1.0.2"
}
}