-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 2.34 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
51
52
53
54
55
{
"name": "subschema-server-utils",
"version": "1.6.1",
"description": "Run validators against a schema and data",
"main": "dist/index",
"repository": {
"type": "git",
"url": "https://github.com/subschema/subschema-server-utils"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"karma": "NODE_ENV=test karma start --no-single-run --colors --auto-watch",
"dist": "webpack --config ./webpack.config.js --output-path dist --output-filename index.js --entry ./src/index.js --display-modules --output-library-target=commonjs",
"dist-externals": "webpack --config ./webpack.config.js --output-path dist --output-filename index-externals.js --entry ./src/index.js --display-modules --output-library-target=commonjs",
"test-dist-externals": "npm run dist-externals && webpack --config ./webpack.config.js --output-path dist --output-filename index-externals-test.js --entry ./test/validateFactory-test.js --display-modules --output-library-target=commonjs && mocha ./dist/index-externals-test.js",
"test-dist": "npm run dist && webpack --config ./webpack.config.js --output-path dist --output-filename index-test.js --entry ./test/validateFactory-test.js --display-modules --output-library-target=commonjs",
"test": "npm run test-dist && npm run test-dist-externals",
"prepublish": "npm test"
},
"author": "Justin Spears<[email protected]>",
"license": "ISC",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-polyfill": "^6.7.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"expect": "^1.16.0",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-mocha": "^0.2.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"lodash": "^3.10.1",
"mocha": "^2.4.5",
"null-loader": "^0.1.1",
"react": "^15.4.0",
"react-dom": "^15.4.0",
"subschema": "^1.6.0",
"subschema-expression": "^1.6.0",
"webpack": "^1.12.14"
},
"dependencies": {
"react-addons-css-transition-group": "^15.4.0"
}
}