-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.61 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
{
"name": "barracks-react",
"version": "3.0.1",
"description": "An action dispatcher for unidirectional data flows for React components",
"main": "barracks-react.js",
"types": "barracks-react.d.ts",
"scripts": {
"test": "standard && browserify -d -x react/addons -x react/lib/ReactContext -x react/lib/ExecutionEnvironment test/test.js | tape-run",
"coverage": "standard && browserify -d -p tape-istanbul/plugin -x react/addons -x react/lib/ReactContext -x react/lib/ExecutionEnvironment test/test.js | tape-run | tape-istanbul",
"cov": "npm run coverage && istanbul report && opener coverage/lcov-report/index.html",
"example": "budo -o example.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scriptollc/barracks-react.git"
},
"keywords": [
"barracks",
"choo",
"react",
"flux",
"redux",
"elm",
"unidirectional",
"data"
],
"author": "Todd Kennedy <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/scriptollc/barracks-react/issues"
},
"homepage": "https://github.com/scriptollc/barracks-react#readme",
"dependencies": {
"@types/react": "^0.14.55",
"barracks": "^9.2.1",
"react": "^15.4.1"
},
"devDependencies": {
"browserify": "^13.1.1",
"browserify-istanbul": "^2.0.0",
"budo": "^9.3.0",
"enzyme": "^2.7.0",
"hyperx": "^2.0.5",
"istanbul": "^0.4.5",
"opener": "^1.4.2",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.1",
"standard": "^8.0.0",
"tape": "^4.6.0",
"tape-istanbul": "^1.0.4",
"tape-run": "^2.1.5"
}
}