-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.11 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
{
"name": "subschema-injection",
"version": "1.2.2",
"description": "Subschema Injection System.",
"webpack": "src/index",
"main": "dist/index",
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/subschema/subschema-injection"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"author": "Justin Spears",
"license": "",
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-core": "^6.3.26",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-es2015": "^6.3.13",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.7.2",
"expect": "^1.13.4",
"mocha": "^2.3.4",
"react": "^15.0.2",
"react-addons-test-utils": "^15.0.2",
"react-dom": "^15.0.2"
},
"peerDependencies": {
"react": "^15.0.2"
},
"scripts": {
"dist": "babel src --out-dir dist",
"test": "mocha --compilers js:babel-register test/*-test.js",
"prepublish": "npm run dist",
"preversion": "npm run prepublish && npm run test"
}
}