-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
49 lines (49 loc) · 1.16 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
{
"name": "alt-container",
"version": "1.1.1",
"description": "A flux container for alt",
"main": "lib/AltContainer.js",
"scripts": {
"clean": "rimraf lib && rimraf utils",
"build": "babel src --out-dir lib --stage 0",
"test": "npm run clean && npm run build && mocha -u exports -R nyan --require ./test/babel test"
},
"repository": {
"type": "git",
"url": "[email protected]:altjs/container.git"
},
"keywords": [
"altcontainer",
"fluxcomponent",
"component",
"container",
"connect",
"stores",
"flux",
"react"
],
"author": "Josh Perez <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/altjs/container/issues"
},
"homepage": "https://github.com/altjs/container",
"dependencies": {
"object.assign": "^4.0.1",
"prop-types": "^15.5.10"
},
"devDependencies": {
"alt": "0.17.4",
"alt-utils": "1.0.0",
"babel": "5.8.23",
"babel-core": "5.8.25",
"chai": "3.3.0",
"jsdom": "6.5.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"
}
}