-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.4 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.4 KB
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": "iris-core",
"version": "0.1.0",
"description": "Data abstraction",
"main": "dist/iris-core.js",
"scripts": {
"build": "WEBPACK_ENV=build webpack",
"watch": "WEBPACK_ENV=build webpack --progress --colors --watch",
"test": "mocha --recursive -R dot --bail --compilers js:babel-register --watch"
},
"author": {
"name": "Kevin Webster",
"url": "https://github.com/rabidpraxis"
},
"repository": {
"type": "git",
"url": "git://github.com/controlroom/iris.git"
},
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-plugin-syntax-decorators": "^6.5.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"chai": "^4.1.1",
"isomorphic-fetch": "^2.2.1",
"jsdom": "^8.3.1",
"mocha": "^2.4.5",
"node-fetch": "^1.7.1",
"react-addons-test-utils": "^15.0.1",
"redux-mock-store": "^1.0.2",
"sinon": "^3.2.0",
"sinon-chai": "^2.12.0",
"webpack": "^1.12.15"
},
"dependencies": {
"immutable": "^3.7.6",
"prop-types": "^15.5.10",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-redux": "^4.4.4",
"redux": "^3.4.0",
"whatwg-fetch": "^2.0.3"
}
}