-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.1 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.1 KB
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
46
47
48
49
50
51
52
{
"name": "@wework/monarch",
"version": "1.0.0-alpha.15",
"description": "Tool for dynamically generating Contentful Migrations",
"repository": {
"type": "git",
"url": "git+https://github.com/wework/monarch.git"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/wework/monarch",
"bin": {
"monarch": "./bin/monarch"
},
"scripts": {
"test": "jest",
"release": "np",
"parse:raw": "node bin/monarch parse:raw",
"parse:react": "node bin/monarch parse:react"
},
"dependencies": {
"contentful-migrate": "^0.8.0",
"fs": "^0.0.1-security",
"lodash": "4.17.11",
"react": "16.5.2",
"react-docgen": "2.21.0",
"yargs": "12.0.2"
},
"devDependencies": {
"airbnb-prop-types": "2.11.0",
"husky": "1.1.3",
"jest": "^23.6.0",
"lint-staged": "8.0.4",
"prettier": "1.14.3"
},
"engines": {
"node": ">=8.9.1",
"npm": ">5.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,json,css,md}": [
"prettier --write",
"git add"
]
}
}