forked from andreypopp/react-derivable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.43 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
{
"name": "@deskpro/react-derivable",
"version": "0.2.0",
"description": "Make React component react on changes in referened derivable values",
"main": "lib/index.js",
"scripts": {
"test": "make lint test",
"compile": "rm -rf lib/* && babel --loose es6.modules -d lib/ src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andreypopp/react-derivable.git"
},
"keywords": [
"react",
"derivable"
],
"author": "Andrey Popp <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andreypopp/react-derivable/issues"
},
"homepage": "https://github.com/andreypopp/react-derivable#readme",
"peerDependencies": {
"derivable": "1.0.0-beta11",
"react": ">= 0.14.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-preset-prometheusresearch": "^0.1.0",
"benchmark": "^2.1.0",
"create-react-app": "^0.2.0",
"derivable": "1.0.0-beta11",
"doctoc": "^1.2.0",
"eslint": "^3.0.1",
"eslint-config-prometheusresearch": "^0.2.0",
"eslint-plugin-react": "^5.2.2",
"flow-bin": "^0.37.0",
"immutable": "^3.8.1",
"jsdom": "^9.4.1",
"mocha": "^2.5.3",
"pnpm": "^0.29.0",
"power-assert": "^1.4.1",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"sinon": "^1.17.4"
},
"dependencies": {
"invariant": "^2.2.1",
"prop-types": "^15.6.0"
}
}