forked from bitshares/alt-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.17 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
{
"name": "alt-react",
"version": "0.0.2",
"description": "Connect flux to react",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"build": "npm run clean && npm run transpile",
"clean": "rimraf lib",
"pretest": "npm run clean && npm run transpile",
"test": "mocha -u exports -R nyan --require ./test/babel test",
"transpile": "babel src --out-dir lib --stage 0"
},
"repository": {
"type": "git",
"url": "git@github.com:altjs/react.git"
},
"keywords": [
"context",
"instance",
"flux",
"isomorphic",
"universal",
"react",
"connect",
"stores",
"alt"
],
"author": "Josh Perez <josh@goatslacker.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/altjs/react/issues"
},
"homepage": "https://github.com/altjs/react",
"devDependencies": {
"alt": "0.17.4",
"babel": "5.8.23",
"babel-core": "5.8.25",
"chai": "3.3.0",
"jsdom": "7.0.1",
"mocha": "2.3.3",
"react": ">=0.16.x",
"react-dom": ">=0.16.x",
"rimraf": "2.4.3",
"sinon": "1.17.1"
},
"dependencies": {
"create-react-class": "^15.6.3",
"prop-types": "^15.6.1"
}
}