-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.95 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
{
"name": "subschema-injection",
"version": "1.0.2",
"description": "Subschema Injection System.",
"main": "",
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/subschema/subschema-injection"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"author": "",
"license": "",
"devDependencies": {
"autoprefixer-loader": "^3.1.0",
"babel-core": "^6.3.26",
"babel-loader": "^6.2.0",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"expect": "^1.13.4",
"karma": "^0.13.19",
"karma-chrome-launcher": "^0.2.2",
"karma-firefox-launcher": "^0.1.7",
"karma-mocha": "^0.2.1",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"lodash": "^3.10.1",
"mocha": "^2.3.4",
"react": "^0.14.6",
"react-addons-test-utils": "^0.14.6",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
},
"scripts": {
"karma": "NODE_ENV=test karma start --no-single-run --colors --auto-watch",
"test": "NODE_ENV=test karma start --single-run --browsers Firefox",
"test-dist": "npm run dist && NODE_ENV=test karma start --single-run --browsers Firefox",
"hot": "NODE_ENV=development webpack-dev-server --hot --inline --config ./webpack.config.js --entry ./public/index.jsx --output-filename=app.entry.js",
"demo": "NODE_ENV=production webpack -p --output-path .build --entry ./public/index.jsx --output-filename=app.[hash].js --config ./webpack.config.js",
"dist": "NODE_ENV=production webpack --display-modules -p --output-path dist --entry ./src/index.js --output-library-target=umd --output-library-name subschema-injection --output-filename=index.js --config ./webpack.config.js",
"prepublish": "npm run test-dist"
}
}