forked from circlecell/jscompress.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.35 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.35 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
68
69
70
71
72
{
"name": "jscompress.com",
"version": "2.0.1",
"private": true,
"description": "The JavaScript Compression Tool",
"main": "index.js",
"browserslist": "> 0.25%, not dead",
"scripts": {
"test": "npm run lint",
"compile-uglifyjs": "uglifyjs --self -c -m -o ./node_modules/uglify-js/uglify-js-browser.js",
"postinstall": "npm run compile-uglifyjs",
"bundle": "NODE_ENV=production webpack --config ./tools/webpack.config.babel.js --mode production",
"dev": "NODE_ENV=development PORT=8089 webpack-dev-server --config tools/webpack.config.babel.js --mode development",
"upgrade": "ncu --upgradeAll && npm install",
"lint": "eslint . --ext .js --cache --ignore-pattern '**/node_modules/**' --ignore-pattern '**/dist/**'",
"deploy": "pm2 deploy ecosystem.json production --force",
"stylelint": "stylelint css/style.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/circlecell/jscompress.com.git"
},
"keywords": [
"jscompress",
"uglify"
],
"author": "Circlecell",
"license": "MIT",
"bugs": {
"url": "https://github.com/circlecell/jscompress.com/issues"
},
"homepage": "https://github.com/circlecell/jscompress.com#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.0.0-beta.53",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.1.0",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"npm-check-updates": "^2.15.0",
"npmlog": "^4.1.2",
"open-browser-webpack-plugin": "0.0.5",
"rimraf": "^2.6.3",
"script-loader": "^0.7.2",
"style-loader": "^0.23.1",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"@babel/standalone": "^7.3.2",
"babel-preset-minify": "^0.5.0",
"exports-loader": "^0.7.0",
"lodash.round": "^4.0.4",
"matreshka": "^2.4.0",
"matreshka-binders-file": "0.0.2",
"uglify-js": "^3.4.9"
},
"peerDependencies": {
"pm2": "^1.1.3"
}
}