-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
97 lines (97 loc) · 2.88 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "universal-webpack",
"version": "0.8.5",
"description": "Isomorphic Webpack",
"main": "index.cjs",
"module": "index.js",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"import": "./index.js",
"require": "./index.cjs"
},
"./server": {
"default": "./server.cjs"
},
"./config": {
"import": "./config.js",
"require": "./config.cjs"
}
},
"peerDependencies": {
"webpack": ">=5",
"mini-css-extract-plugin": "*"
},
"dependencies": {
"@babel/runtime": "^7.14.6",
"colors": "^1.4.0",
"fs-extra": "^0.30.0",
"minimist": "^1.2.5",
"validate-npm-package-name": "^2.2.2"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/register": "^7.14.5",
"better-npm-run": "0.0.14",
"chai": "^3.5.0",
"crlf": "^1.1.1",
"extract-text-webpack-plugin": "^3.0.2",
"istanbul": "^1.1.0-alpha.1",
"mini-css-extract-plugin": "^0.2.0",
"mocha": "^8.1.1",
"npm-run-all": "^1.4.0",
"rimraf": "^2.7.1",
"webpack": "^4.44.1"
},
"scripts": {
"test": "mocha --require @babel/register --colors --bail --reporter spec test/ --recursive",
"test-coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --require @babel/register --colors --reporter dot test/ --recursive",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require @babel/register --colors --reporter spec test/ --recursive",
"clean-for-build": "rimraf ./build/**/*",
"build-commonjs-modules": "better-npm-run build-commonjs-modules",
"build-es6-modules": "better-npm-run build-es6-modules",
"build": "npm-run-all clean-for-build build-commonjs-modules build-es6-modules build:commonjs:package.json",
"build:commonjs:package.json": "node create-commonjs-package-json.js",
"prepublishOnly": "crlf --set=LF bin/* && npm-run-all build test"
},
"betterScripts": {
"build-commonjs-modules": {
"command": "babel ./source --out-dir ./build --source-maps",
"env": {
"BABEL_ENV": "commonjs"
}
},
"build-es6-modules": {
"command": "babel ./source --out-dir ./es6 --source-maps",
"env": {
"BABEL_ENV": "es6"
}
}
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/catamphetamine/universal-webpack.git"
},
"keywords": [
"webpack",
"isomorphic",
"universal",
"render",
"server",
"react"
],
"author": "catamphetamine <purecatamphetamine@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/catamphetamine/universal-webpack/issues"
},
"homepage": "https://gitlab.com/catamphetamine/universal-webpack#readme",
"bin": {
"universal-webpack": "./bin/universal-webpack.js"
},
"typings": "index.d.ts"
}