-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
116 lines (116 loc) · 3.38 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
{
"name": "play-anywhere",
"version": "1.0.0",
"description": "A simple zero-configuration command-line webpack dev server.",
"keywords": [
"webpack",
"server",
"command-line",
"cmd",
"http"
],
"main": "dist/play-anywhere.cjs.js",
"module": "dist/play-anywhere.es6.js",
"typings": "dist/types/index.d.ts",
"bin": {
"play-anywhere": "./bin/play-anywhere",
"pa": "./bin/play-anywhere"
},
"files": [
"bin",
"dist",
"templates"
],
"author": "calimanco <calimanco@qq.com>",
"repository": {
"type": "git",
"url": "https://github.com/calimanco/play-anywhere.git"
},
"license": "MIT",
"engines": {
"node": ">=10.10.0"
},
"scripts": {
"lint": "eslint -c .eslintrc.js --ignore-pattern .eslintignore {src,test}/**/**/*.ts",
"lint:md": "eslint --ext md .",
"prebuild": "ts-node tools/clear-dist.ts",
"build": "rollup -c rollup.config.js",
"start": "node ./bin/play-anywhere",
"dev": "rollup -c rollup.config.js -w",
"test": "jest --coverage --forceExit",
"test:watch": "jest --coverage --watch",
"test:prod": "npm run lint && npm run test -- --no-cache",
"report-coverage": "ts-node tools/cat.ts ./coverage/lcov.info | coveralls",
"commit": "git-cz",
"semantic-release": "semantic-release --branches=main",
"precommit": "lint-staged",
"compiled": "tsc -p tsconfig.json --module es6"
},
"lint-staged": {
"{src,test}/**/**/*.ts": [
"eslint --fix",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"tslib": "^2.2.0",
"chalk": "^4.1.1",
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^5.2.4",
"express": "^4.17.1",
"html-webpack-plugin": "^5.3.1",
"minimist": "^1.2.5",
"style-loader": "^2.0.0",
"ts-loader": "^9.1.1",
"typescript": "^4.2.4",
"webpack": "^5.36.2",
"webpack-dev-middleware": "^4.1.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^5.7.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@types/copy-webpack-plugin": "^8.0.0",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.168",
"@types/node": "^15.0.1",
"@types/webpack-dev-middleware": "^4.1.2",
"@types/webpack-env": "^1.16.0",
"@types/webpack-hot-middleware": "^2.25.4",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"commitizen": "^4.2.3",
"coveralls": "^3.0.2",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-markdown": "^2.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jest-config": "^26.6.3",
"lint-staged": "^10.5.4",
"lodash": "^4.17.21",
"prettier": "^2.2.1",
"rollup": "^2.47.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.30.0",
"semantic-release": "^17.4.2",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1"
}
}