-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 844 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
{
"author": "",
"bugs": {
"url": "https://github.com/igeligel/ndb-showcase/issues"
},
"description": "",
"devDependencies": {
"husky": "^2.2.0",
"jest": "^24.8.0",
"lint-staged": ">=8",
"ndb": "^1.0.44",
"prettier": "^1.17.0"
},
"homepage": "https://github.com/igeligel/ndb-showcase#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [],
"license": "ISC",
"lint-staged": {
"*.{js,json}": [
"prettier --write",
"git add"
]
},
"main": "index.js",
"name": "ndb-showcase",
"repository": {
"type": "git",
"url": "git+https://github.com/igeligel/ndb-showcase.git"
},
"scripts": {
"start": "node cli.js",
"start:debug": "ndb node cli.js",
"test": "jest",
"test:debug": "ndb jest"
},
"version": "0.0.1"
}