forked from apollographql/apollo-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.95 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "apollo-client",
"version": "0.4.1",
"description": "A simple yet functional GraphQL client.",
"main": "./lib/src/index.js",
"typings": "./lib/src/index.d.ts",
"scripts": {
"dev": "./scripts/dev.sh",
"deploy": "rm -rf ./lib && npm run compile && ./scripts/deploy.sh",
"pretest": "npm run compile",
"test": "npm run testonly --",
"posttest": "npm run lint",
"filesize": "npm run compile:browser && ./scripts/filesize.js --file=./dist/index.min.js --maxGzip=36",
"compile": "tsc",
"compile:browser": "rm -rf ./dist && mkdir ./dist && browserify ./lib/src/index.js -o=./dist/index.js && npm run minify:browser",
"minify:browser": "uglifyjs --compress --mangle --screw-ie8 -o=./dist/index.min.js -- ./dist/index.js",
"watch": "tsc -w",
"prepublish": "npm run compile",
"lint": "grunt tslint",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- --reporter dot --full-trace lib/test/tests.js",
"postcoverage": "remap-istanbul --input coverage/coverage.json --type lcovonly --output coverage/lcov.info",
"testonly": "mocha --reporter spec --full-trace lib/test/tests.js"
},
"repository": {
"type": "git",
"url": "apollostack/apollo-client"
},
"keywords": [
"ecmascript",
"es2015",
"jsnext",
"javascript",
"relay",
"npm",
"react"
],
"author": "Sashko Stubailo <sashko@stubailo.com>",
"license": "MIT",
"dependencies": {
"es6-promise": "^3.1.2",
"graphql-tag": "^0.1.8",
"lodash.assign": "^4.0.8",
"lodash.clonedeep": "^4.3.2",
"lodash.countby": "^4.4.0",
"lodash.forown": "^4.1.0",
"lodash.has": "^4.3.1",
"lodash.identity": "^3.0.0",
"lodash.includes": "^4.1.2",
"lodash.isarray": "^4.0.0",
"lodash.isboolean": "^3.0.3",
"lodash.isequal": "^4.2.0",
"lodash.isnull": "^3.0.0",
"lodash.isnumber": "^3.0.3",
"lodash.isobject": "^3.0.2",
"lodash.isstring": "^4.0.1",
"lodash.isundefined": "^3.0.1",
"lodash.mapvalues": "^4.4.0",
"lodash.merge": "^4.4.0",
"lodash.pick": "^4.2.0",
"redux": "^3.3.1",
"symbol-observable": "^0.2.4",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"async": "^2.0.0",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"colors": "^1.1.2",
"concurrently": "^2.2.0",
"dataloader": "^1.1.0",
"es6-promise": "^3.1.2",
"grunt": "1.0.1",
"grunt-tslint": "3.1.0",
"gzip-size": "^3.0.0",
"isomorphic-fetch": "^2.2.1",
"istanbul": "^0.4.2",
"lodash": "^4.6.1",
"lodash.mapvalues": "^4.3.0",
"lodash.omit": "^4.2.1",
"minimist": "^1.2.0",
"mocha": "^2.3.3",
"nodemon": "^1.9.2",
"pretty-bytes": "^3.0.1",
"remap-istanbul": "^0.5.1",
"request-promise": "^2.0.1",
"rxjs": "^5.0.0-beta.7",
"sinon": "^1.17.4",
"source-map-support": "^0.4.0",
"tslint": "3.13.0",
"typescript": "^1.8.9",
"typings": "^1.0.0",
"uglify-js": "^2.6.2"
}
}