forked from catamphetamine/universal-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.15 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.15 KB
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
56
57
58
59
60
61
62
63
64
65
{
"name": "universal-webpack",
"version": "0.1.40",
"description": "Isomorphic Webpack",
"main": "index.umd.js",
"jsnext:main": "index.es6.js",
"peerDependencies": {
"webpack": "*",
"extract-text-webpack-plugin": "*"
},
"dependencies": {
"colors": "^1.1.2",
"fake-style-loader": "^1.0.1",
"fs-extra": "^0.30.0",
"minimist": "^1.2.0",
"validate-npm-package-name": "^2.2.2"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-react-display-name": "^6.5.0",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"extract-text-webpack-plugin": "^1.0.1",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^2.5.3",
"npm-run-all": "^1.4.0",
"rimraf": "^2.5.0",
"webpack": "^1.13.1"
},
"scripts": {
"test": "mocha --compilers js:babel-core/register --colors --bail --reporter spec test/ --recursive",
"test-coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --compilers js:babel-core/register --colors --reporter dot test/ --recursive",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --compilers js:babel-core/register --colors --reporter spec test/ --recursive",
"clean-for-build": "rimraf ./build/**/*",
"build-modules": "babel ./source --optional runtime --out-dir ./build --source-maps",
"build": "npm-run-all clean-for-build build-modules",
"prepublish": "npm-run-all build test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/halt-hammerzeit/universal-webpack.git"
},
"keywords": [
"webpack",
"isomorphic",
"universal",
"render",
"server",
"react"
],
"author": "Halt Hammerzeit <halt.hammerzeit.at@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/halt-hammerzeit/universal-webpack/issues"
},
"homepage": "https://github.com/halt-hammerzeit/universal-webpack#readme",
"bin": {
"universal-webpack": "./bin/universal-webpack.js"
}
}