forked from beerjson/beerjson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 983 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
42
43
44
45
{
"name": "beerjson",
"version": "1.0.0",
"description": "BeerJSON format",
"main": "index.js",
"devDependencies": {
"ajv": "^5.3.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"json-dup-key-validator": "^1.0.2",
"lint-staged": "^4.3.0",
"lodash": "^4.17.5",
"pixl-xml": "^1.0.10",
"prettier": "1.14.2",
"rewire": "^4.0.1"
},
"scripts": {
"test": "jest",
"gen-docs": "node js/gen-docs.js",
"precommit": "lint-staged"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/",
"watchPathIgnorePatterns": [
"converted"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/beerjson/beerjson.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/beerjson/beerjson/issues"
},
"homepage": "https://github.com/beerjson/beerjson#readme",
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}