-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.14 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@entria/relay-utils",
"version": "0.0.11",
"description": "Relay utility methods",
"keywords": [
"react",
"relay",
"modern",
"relay modern",
"data",
"graphql",
"entria"
],
"license": "ISC",
"homepage": "https://github.com/entria/relay-utils#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/entria/relay-utils"
},
"main": "lib/index.js",
"module": "src/index.js",
"jsnext:main": "src/index.js",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.1.0",
"flow-bin": "^0.48.0",
"jest": "^20.0.4",
"lint-staged": "^4.0.0",
"lodash": "^4.17.4",
"pre-commit": "^1.2.2",
"prettier": "^1.4.4",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-relay": "^1.1.0"
},
"dependencies": {},
"peerDependencies": {
"lodash": ">=4.17.4",
"react": ">=0.14",
"react-dom": ">=0.14",
"react-relay": ">=1.1.0"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write --single-quote true --trailing-comma all --print-width 100",
"git add"
]
},
"pre-commit": "lint:staged",
"scripts": {
"prepublish": "npm run build",
"test": "jest --coverage --runInBand --forceExit",
"test:watch": "jest --watch --coverage",
"build": "babel src -d lib --ignore __tests__",
"lint": "eslint --ext js src",
"lint:staged": "lint-staged",
"check": "npm run lint && npm run test",
"release:patch": "npm run check && npm version patch && git push --follow-tags && npm publish --access public",
"release:minor": "npm run check && npm version minor && git push --follow-tags && npm publish --access public",
"release:major": "npm run check && npm version major && git push --follow-tags && npm publish --access public"
}
}