This repository has been archived by the owner on Apr 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathpackage.json
135 lines (135 loc) · 4.21 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "webpack-serve",
"version": "2.0.2",
"description": "A lean, modern, and flexible webpack development server",
"license": "MIT",
"repository": "webpack-contrib/webpack-serve",
"author": "Andrew Powell <[email protected]>",
"homepage": "https://github.com/webpack-contrib/webpack-serve",
"bugs": "https://github.com/webpack-contrib/webpack-serve/issues",
"bin": "lib/cli.js",
"main": "lib/index.js",
"engines": {
"node": ">= 6.9.0 < 7.0.0 || >= 8.9.0"
},
"old-scripts": {
"beautify": "npm run lint -- --fix",
"ci": "npm run lint && npm run test",
"cover": "nyc report --reporter=text-lcov > coverage.lcov && codecov --token=$WS_CODECOV_TOKEN",
"cover:report": "nyc report --reporter=html",
"lint": "eslint index.js cli.js bin lib test examples",
"mocha": "mocha --require intelli-espower-loader test/test.js --full-trace --check-leaks --exit",
"test": "nyc npm run mocha"
},
"scripts": {
"commitlint": "commitlint",
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "eslint --cache lib test",
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
"lint-staged": "lint-staged",
"release": "standard-version",
"release:ci": "conventional-github-releaser -p angular",
"release:validate": "commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)",
"security": "nsp check",
"test": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 jest",
"test:watch": "jest --watch",
"test:coverage": "npm run test:cover && npm run test:cover:report",
"test:cover": "nyc jest --collectCoverageFrom='lib/**/*.js' --coverageReporters=none --coverage",
"test:cover:report": "nyc report --reporter=html",
"ci:lint": "npm run lint && npm run security",
"ci:test": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 npm run test -- --runInBand",
"ci:coverage": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 npm run test -- --runInBand",
"defaults": "webpack-defaults"
},
"files": [
"lib/",
"schemas/",
"LICENSE",
"README.md"
],
"peerDependencies": {
"webpack": "^4.0.0"
},
"dependencies": {
"@shellscape/koa-static": "^4.0.4",
"@webpack-contrib/cli-utils": "^1.0.2",
"@webpack-contrib/config-loader": "^1.1.1",
"@webpack-contrib/schema-utils": "^1.0.0-beta.0",
"chalk": "^2.3.0",
"clipboardy": "^1.2.2",
"cosmiconfig": "^5.0.2",
"debug": "^3.1.0",
"decamelize": "^2.0.0",
"get-port": "^3.2.0",
"import-local": "^1.0.0",
"is-plain-obj": "^1.1.0",
"killable": "^1.0.0",
"koa": "^2.4.1",
"koa-webpack": "^5.1.0",
"loud-rejection": "^1.6.0",
"mem": "^3.0.0",
"meow": "^5.0.0",
"merge-options": "^1.0.1",
"nanobus": "^4.3.1",
"node-version": "^1.1.3",
"opn": "^5.1.0",
"p-defer": "^1.0.0",
"p-series": "^1.1.0",
"resolve": "^1.6.0",
"strip-ansi": "^4.0.0",
"time-fix-plugin": "^2.0.0",
"update-notifier": "^2.3.0",
"url-join": "^4.0.0",
"v8-compile-cache": "^2.0.0",
"webpack-log": "^1.1.2"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@webpack-contrib/defaults": "^2.4.0",
"@webpack-contrib/eslint-config-webpack": "^2.0.4",
"babel-jest": "^23.0.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"codecov": "^3.0.0",
"conventional-github-releaser": "^3.1.0",
"cross-env": "^5.1.6",
"del-cli": "^1.1.0",
"eslint": "^4.5.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.6.0",
"execa": "^0.10.0",
"husky": "^0.14.3",
"jest": "^23.1.0",
"jest-serializer-path": "^0.1.15",
"lint-staged": "^7.1.3",
"mocha": "^5.0.0",
"mocha-chrome": "^1.0.3",
"nsp": "^3.2.1",
"nyc": "^12.0.2",
"pre-commit": "^1.2.2",
"prettier": "^1.12.1",
"standard-version": "^4.4.0",
"supertest": "^3.1.0",
"webpack": "^4.0.0"
},
"keywords": [
"development",
"devserver",
"serve",
"server",
"webpack"
],
"jest": {
"snapshotSerializers": [
"jest-serializer-path"
],
"testEnvironment": "node"
},
"pre-commit": "lint-staged",
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}