-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 864 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 864 Bytes
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
{
"name": "modules",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "postcss css --dir lib/css & babel js -d lib/js --presets=@babel/env && node scripts/minifyJs.js",
"babel": "babel js -d lib --presets=@babel/env",
"compress": "uglifyjs lib -m -c -o min",
"pubmini": "node scripts/minifyJs.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.20.0",
"@babel/polyfill": "^7.12.1"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-arrow-functions": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.2",
"cssnano": "^5.1.14",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"uglify-js": "^3.17.4"
}
}