-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 1.02 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
{
"name": "graphql-relay-node",
"version": "1.0.1",
"description": "Simplify managing global ids used in graphql-relay",
"main": "index.js",
"scripts": {
"flow": "flow",
"build":
"npm run build:babel && npm run build:flow && npm run build:package-json",
"build:babel": "babel src/index.js --out-file index.js",
"build:package-json": "node ./resources/clean-package-json.js",
"build:flow": "cp src/index.js index.js.flow",
"test": "jest",
"ci": "npm run flow check && npm t",
"prepublishOnly": "npm run build"
},
"keywords": ["graphql", "graphql-relay"],
"author": "Dirk-Jan Rutten",
"license": "MIT",
"files": ["index.js", "index.js.flow", "README.md"],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"flow-bin": "^0.72.0",
"graphql": "^0.13.2",
"graphql-relay": "^0.5.5",
"jest": "^22.4.3"
}
}