-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.46 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
{
"name": "ians-fw",
"version": "1.4.4",
"description": "ians-fw, my best attempt at creating a custom web framework",
"main": "build/index.js",
"module": "build/index.js",
"dependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"express": "^4.17.1",
"fs": "0.0.1-security",
"path": "^0.12.7",
"resolve": "^1.13.1",
"rollup": "^1.21.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-babel-minify": "^9.1.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^6.2.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-progress": "^1.1.1",
"rollup-plugin-uglify": "^6.0.3",
"typescript": "^3.6.3"
},
"bin": {
"fw-script": "bin/fw-scripts.js"
},
"devDependencies": {
"gulp": "^4.0.0",
"gulp-cli": "^2.2.0",
"gulp-concat-util": "^0.5.5",
"gulp-run-command": "0.0.9",
"gulp-typescript": "^5.0.1",
"uglify-es": "^3.3.9"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "gulp",
"rollup": "rollup build/index.js -f esm --context this -d dist",
"minify": "uglifyjs --compress --mangle toplevel=true --beautify beautify=false -o ./dist/index.min.js ./dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC"
}