-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 971 Bytes
/
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
{
"name": "SReact",
"version": "0.0.0",
"description": "A simple, homemade version of React.",
"main": "index.js",
"scripts": {
"test-cl": "mocha ./test/ --watch --color --require babel-register",
"test": "webpack --config webpack.config.test.js --watch --progress --color -d",
"start": "webpack --config webpack.config.js --watch --progress --color -d"
},
"keywords": [
"React",
"Javascript",
"Virtual DOM"
],
"author": "Sarah Ransohoff",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.16.0",
"virtual-dom": "^2.1.1",
"webpack": "^1.13.2",
"mocha": "^3.1.0",
"babel-register": "^6.16.3",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"babel-plugin-transform-react-jsx": "^6.8.0"
},
"dependencies": {
"babel-runtime": "^6.11.6"
}
}