forked from gyzerok/adrenaline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "adrenaline",
"version": "1.0.0-rc1",
"description": "Relay-like framework with simplier API",
"main": "./lib/index.js",
"scripts": {
"test": "mocha --compilers js:babel-register $(find ./src -name '*.spec.js')",
"build": "node_modules/.bin/babel src --ignore __tests__ --out-dir lib/ --source-maps",
"prepublish": "npm run build"
},
"author": "Fedor Nezhivoi <gyzerok@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/gyzerok/adrenaline.git"
},
"license": "MIT",
"keywords": [
"adrenaline",
"react",
"redux",
"react-redux",
"bindings",
"relay",
"graphql",
"flux"
],
"dependencies": {
"invariant": "^2.2.1"
},
"peerDependencies": {
"react": "^0.14.0",
"graphql": "^0.4.18"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^6.0.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"eslint": "^2.4.0",
"eslint-plugin-react": "^4.2.3",
"expect": "^1.14.0",
"mocha": "^2.4.5",
"webpack": "^1.12.2"
}
}