-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
47 lines (47 loc) · 1.08 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": "alt-react",
"version": "0.0.1",
"description": "Connect flux to react",
"main": "lib/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": "[email protected]:altjs/react.git"
},
"keywords": [
"context",
"instance",
"flux",
"isomorphic",
"universal",
"react",
"connect",
"stores",
"alt"
],
"author": "Josh Perez <[email protected]>",
"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.14.0",
"react-addons-test-utils": "0.14.0",
"react-dom": "0.14.0",
"rimraf": "2.4.3",
"sinon": "1.17.1"
}
}