forked from beerjson/beerjson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.03 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
40
41
42
43
44
{
"name": "beerjson",
"version": "1.0.0",
"description": "BeerJSON format",
"main": "index.js",
"devDependencies": {
"ajv": "^5.3.0",
"husky": "^0.14.3",
"jest": "^24.8.0",
"json-dup-key-validator": "^1.0.2",
"lint-staged": "^4.3.0",
"lodash": "^4.17.15",
"pixl-xml": "^1.0.10",
"prettier": "1.14.2"
},
"scripts": {
"test": "jest",
"gen-docs": "node js/gen-docs.js ; prettier --write ./types/ts/beerjson.d.ts ; prettier --write ./types/flow-typed/beerjson.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,ts}": [
"prettier --write",
"git add"
]
}
}