-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
53 lines (53 loc) · 1.45 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
{
"name": "cashay",
"version": "0.23.0",
"description": "relay for the rest of us",
"main": "lib/index.js",
"bin": {
"cashay-schema": "lib/schema/updateSchema.babel.js"
},
"loader": "lib/schema/cashay-loader",
"scripts": {
"clean": "rimraf lib",
"lint": "xo src/index.js --esnext --space --fix",
"build": "babel -d lib/ src/",
"watch": "babel -w -d lib/ src/",
"prepublish": "npm run clean && npm run build",
"test": "nyc ava ./src/**/__tests__/**/*-tests.js",
"quicktest": "ava ./src/**/__tests__/**/*-tests.js",
"buildTestSchema": "node ./lib/schema/updateSchema.babel.js src/__tests__/schema.js src/__tests__/clientSchema.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattkrick/cashay.git"
},
"keywords": [
"relay",
"client",
"cache",
"redux"
],
"author": "Matt Krick <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattkrick/cashay/issues"
},
"homepage": "https://github.com/mattkrick/cashay#readme",
"devDependencies": {
"ava": "0.15.2",
"babel-cli": "6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-1": "^6.16.0",
"babel-register": "^6.9.0",
"coveralls": "^2.11.9",
"nyc": "^6.4.4",
"rimraf": "2.5.2",
"xo": "0.15.1"
},
"dependencies": {
"graphql": "0.10.5",
"isomorphic-fetch": "^2.2.1",
"minimist": "^1.2.0",
"regenerator-runtime": "^0.9.6"
}
}