This repository has been archived by the owner on Jul 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
114 lines (114 loc) · 3.51 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
{
"name": "webpack-hot-client",
"version": "4.1.1",
"description": "A client for enabling, and interacting with, webpack Hot Module Replacement",
"license": "MIT",
"repository": "webpack-contrib/webpack-hot-client",
"author": "Andrew Powell <[email protected]>",
"homepage": "https://github.com/webpack-contrib/webpack-hot-client",
"bugs": "https://github.com/webpack-contrib/webpack-hot-client/issues",
"bin": "",
"main": "lib/index.js",
"engines": {
"node": ">= 6.9.0 < 7.0.0 || >= 8.9.0"
},
"scripts": {
"build:client": "babel lib/client --out-dir client",
"commitlint": "commitlint",
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "eslint --cache src test",
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
"lint-staged": "lint-staged",
"prepublishOnly": "npm run build:client",
"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": "NODE_TLS_REJECT_UNAUTHORIZED=0 npm run build:client && jest",
"test:watch": "jest --watch",
"test:coverage": "NODE_TLS_REJECT_UNAUTHORIZED=0 npm run build:client && jest --collectCoverageFrom='lib/*.js' --coverage",
"ci:lint": "npm run lint && npm run security",
"ci:test": "NODE_TLS_REJECT_UNAUTHORIZED=0 npm run test -- --runInBand",
"ci:coverage": "NODE_TLS_REJECT_UNAUTHORIZED=0 npm run test:coverage -- --runInBand",
"defaults": "defaults"
},
"files": [
"client/",
"lib/compiler.js",
"lib/HotClientError.js",
"lib/index.js",
"lib/options.js",
"lib/socket-server.js",
"schemas/",
"LICENSE",
"README.md"
],
"peerDependencies": {
"webpack": "^4.0.0"
},
"dependencies": {
"@webpack-contrib/schema-utils": "^1.0.0-beta.0",
"json-stringify-safe": "^5.0.1",
"loglevelnext": "^1.0.2",
"merge-options": "^1.0.1",
"strip-ansi": "^4.0.0",
"uuid": "^3.1.0",
"webpack-log": "^1.1.1",
"ws": "^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.49",
"@babel/core": "^7.0.0-beta.49",
"@babel/polyfill": "^7.0.0-beta.49",
"@babel/preset-env": "^7.0.0-beta.49",
"@babel/register": "^7.0.0-beta.49",
"@commitlint/cli": "^6.2.0",
"@commitlint/config-conventional": "^6.1.3",
"@webpack-contrib/defaults": "^2.4.0",
"@webpack-contrib/eslint-config-webpack": "^2.0.4",
"ansi-regex": "^3.0.0",
"babel-jest": "^23.0.1",
"codecov": "^3.0.0",
"conventional-github-releaser": "^3.0.0",
"cross-env": "^5.1.6",
"del-cli": "^1.1.0",
"eslint": "^4.6.1",
"eslint-config-webpack": "^1.2.5",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.6.0",
"expect": "^22.4.3",
"husky": "^0.14.3",
"jest": "^23.0.1",
"jest-serializer-path": "^0.1.15",
"killable": "^1.0.0",
"lint-staged": "^7.1.2",
"loud-rejection": "^1.6.0",
"memory-fs": "^0.4.1",
"mocha": "^5.0.0",
"nsp": "^3.2.1",
"nyc": "^11.4.1",
"pre-commit": "^1.2.2",
"prettier": "^1.13.2",
"sinon": "^5.0.10",
"standard-version": "^4.4.0",
"time-fix-plugin": "^2.0.0",
"touch": "^3.1.0",
"webpack": "^4.0.1"
},
"keywords": [
"webpack"
],
"jest": {
"snapshotSerializers": [
"jest-serializer-path"
],
"testEnvironment": "node"
},
"pre-commit": "lint-staged",
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}