-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
120 lines (120 loc) · 3.2 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "inferno-apollo",
"version": "1.1.0",
"description": "Inferno data container for Apollo Client",
"main": "lib/index.js",
"browser": "lib/browser.js",
"typings": "lib/index.d.ts",
"scripts": {
"deploy": "npm run compile && npm test && npm publish",
"test": "jest",
"test-watch": "jest --watch",
"posttest": "npm run lint",
"filesize": "npm run compile:browser && ./scripts/filesize.js --file=./dist/index.min.js --maxGzip=15",
"compile": "tsc",
"compile:browser": "rm -rf ./dist && mkdir ./dist && browserify ./lib/index.js --i inferno --i apollo-client -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",
"lint": "tslint 'src/*.ts*' && tslint 'test/*.ts*'"
},
"repository": {
"type": "git",
"url": "zanettin/inferno-apollo"
},
"keywords": [
"ecmascript",
"es2015",
"jsnext",
"javascript",
"relay",
"npm",
"inferno"
],
"author": "Roman Zanettin <roman.zanettin@gmail.com>",
"jest": {
"testEnvironment": "jsdom",
"transform": {
".*": "<rootDir>/preprocessor.js"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"modulePathIgnorePatterns": [
"<rootDir>/examples"
],
"testRegex": "<rootDir>/test/.*.test.(ts|tsx|js)$",
"collectCoverage": true
},
"license": "MIT",
"files": [
"dist",
"lib",
"src",
"exports.d.ts",
"LICENSE",
"README.md"
],
"peerDependencies": {
"inferno": "^3.0.3",
"interno-compat": "^1.3.0-rc.3"
},
"devDependencies": {
"@types/enzyme": "^2.8.4",
"@types/graphql": "^0.10.1",
"@types/invariant": "^2.2.27",
"@types/isomorphic-fetch": "^0.0.34",
"@types/jest": "^20.0.5",
"@types/lodash": "^4.14.71",
"@types/node": "^8.0.17",
"@types/object-assign": "^4.0.28",
"@types/sinon": "^2.3.3",
"babel-jest": "^20.0.3",
"browserify": "^14.4.0",
"cheerio": "^1.0.0-rc.2",
"colors": "^1.1.2",
"enzyme": "^2.9.1",
"enzyme-to-json": "^1.5.1",
"flow-bin": "^0.51.1",
"graphql": "^0.10.5",
"gzip-size": "^3.0.0",
"immutable": "^3.8.1",
"inferno": "^3.7.0",
"inferno-compat": "^3.7.0",
"inferno-mobx": "^3.7.0",
"inferno-redux": "^3.7.0",
"isomorphic-fetch": "^2.2.1",
"jest": "^20.0.4",
"jsdom": "^11.1.0",
"lodash": "^4.16.6",
"minimist": "^1.2.0",
"mobx": "^3.2.2",
"pretty-bytes": "^4.0.2",
"redux": "^3.7.2",
"redux-form": "^7.0.3",
"redux-immutable": "^4.0.0",
"redux-loop": "^3.1.0",
"source-map-support": "^0.4.15",
"swapi-graphql": "0.0.6",
"travis-weigh-in": "^1.0.2",
"tslint": "^5.5.0",
"typescript": "^2.4.2",
"typescript-require": "^0.2.9-1",
"typings": "^2.1.0",
"uglify-js": "^3.0.26"
},
"dependencies": {
"apollo-client": "^1.9.0-1",
"graphql-anywhere": "^3.1.0",
"graphql-tag": "^2.4.2",
"hoist-non-react-statics": "^2.2.1",
"invariant": "^2.2.1",
"lodash.flatten": "^4.2.0",
"lodash.isequal": "^4.1.1",
"lodash.isobject": "^3.0.2",
"lodash.pick": "^4.4.0",
"object-assign": "^4.0.1"
}
}