-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.74 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.74 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
66
67
{
"name": "message-webpack-plugin",
"version": "0.0.10",
"description": "一个处理消息的webpack插件",
"main": "lib/index.js",
"typings": "types/index.d.ts",
"author": {
"name": "ccode",
"url": "https://github.com/imccode"
},
"files": [
"LICENSE",
"README.md",
"lib/",
"types/"
],
"keywords": [
"message-webpack-plugin",
"message-webpack"
],
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/imccode/message-webpack-plugin.git"
},
"bugs": {
"url": "https://github.com/imccode/message-webpack-plugin/issues"
},
"homepage": "https://github.com/imccode/message-webpack-plugin",
"scripts": {
"dev": "webpack --config ./example/webpack.config.js --mode development -w",
"build": "webpack --config ./example/webpack.config.js --mode production",
"tsc": "rm -rf types && tsc",
"publish-npm": "rm -rf types && tsc && yarn publish --registry https://registry.npmjs.org",
"publish-npm:next": "rm -rf types && tsc && yarn publish --registry https://registry.npmjs.org --tag next "
},
"dependencies": {
"chalk": "^3.0.0",
"ora": "^4.0.3"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/node": "^12.12.5",
"@types/ora": "^3.2.0",
"@types/webpack": "^4.41.4",
"prettier": "1.19.1",
"typescript": "latest",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": false,
"trailingComma": "none",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "avoid",
"insertPragma": false,
"tabWidth": 2,
"useTabs": false
}
}