-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.33 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
{
"name": "react-injector",
"version": "0.2.1",
"description": "Dependency injection or React",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/michael-shattuck/react-injector"
},
"scripts": {
"build": "babel src -d lib --ignore src/__specs__",
"prepublish": "npm run build",
"test": "mocha \"src/**/*.spec.js\"",
"test-watch": "npm test -- --watch",
"example": "webpack-dev-server --content-base examples/basic"
},
"keywords": [
"react-injector",
"react",
"injection",
"dependency injection"
],
"author": "Michael Shattuck",
"license": "MIT",
"dependencies": {
"react": "^0.14.6",
"react-dom": "^0.14.6"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"chai": "^3.4.1",
"html-webpack-plugin": "^2.7.2",
"jsx-chai": "^2.0.0",
"mocha": "^2.4.2",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"webpack": "^1.12.12",
"webpack-dev-server": "^1.14.1"
}
}