This repository was archived by the owner on Feb 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.49 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
{
"name": "coalk",
"version": "0.1.0",
"description": "A Comment component for Your Website.",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --config config/webpack.dev.js --watch --colors",
"dev-dist": "cross-env NODE_ENV=development webpack --config config/webpack.dev.js --progress --display-error-details --colors && npm run min",
"min": "uglifyjs ./dist/coalk.js -o ./dist/coalk.all.min.js",
"build": "cross-env NODE_ENV=production webpack --config config/webpack.prod.js --progress --display-error-details --colors",
"clean": "rm -rf ./dist/coalk.*",
"test": "mocha --recursive --require @babel/register"
},
"keywords": [
"fyj",
"comment",
"comment-plugin",
"website-tool"
],
"author": {
"name": "Huiyi.FYJ",
"email": "jxfengyijie@gmail.com",
"url": "https://huiyifyj.cn"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/register": "^7.0.0",
"autoprefixer": "^9.4.9",
"babel-loader": "^8.0.5",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"exports-loader": "^0.7.0",
"html-loader": "^0.5.5",
"mini-css-extract-plugin": "^0.6.0",
"mocha": "^6.0.2",
"node-sass": "^4.11.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"uglify-js": "^3.4.9",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
}
}