forked from imranolas/graphql-ast-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.51 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
{
"name": "graphql-ast-types",
"version": "1.0.2",
"main": "lib/index.js",
"license": "MIT",
"keywords": [
"graphql",
"ast",
"types",
"graphql-ast-types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/imranolas/graphql-ast-types.git"
},
"files": [
"README.md",
"lib",
"src",
"api.md"
],
"scripts": {
"test": "jest src/**",
"test:watch": "yarn test -- --watch",
"prebuild": "yarn generate",
"build": "babel src --out-dir lib --source-maps inline -D",
"generate": "node ./generate/index.js",
"prepublishOnly": "yarn build",
"flow": "./node_modules/.bin/flow",
"lint-staged": "lint-staged"
},
"bugs": {
"url": "https://github.com/imranolas/graphql-ast-types/issues"
},
"dependencies": {},
"peerDependencies": {
"graphql": "^0.11.7"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-generator": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"babel-template": "^6.26.0",
"babel-traverse": "^6.26.0",
"babel-types": "^6.26.0",
"flow-bin": "^0.57.3",
"flow-parser": "^0.57.3",
"graphql": "^0.11.7",
"jest": "^21.2.1",
"lint-staged": "^4.3.0",
"pre-commit": "^1.2.2",
"prettier": "^1.7.4",
"strip-indent": "^2.0.0"
},
"jest": {
"roots": [
"<rootDir>/src/"
]
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"pre-commit": "lint-staged"
}