-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "muffin",
"version": "0.9.2",
"description": "lightweight & implementation-flexible spa frontend development framework",
"main": "index.js",
"bin": {
"muf": "./cli/main.js"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-license": "^2.0.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-uglify": "^6.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./node_modules/.bin/rollup -c"
},
"keywords": [
"frontend",
"webapp",
"spa",
"mvc",
"javascript",
"vanilla"
],
"author": "footloose.io",
"license": "ISC",
"dependencies": {
"commander": "^5.0.0",
"kill-port": "^1.6.1",
"localforage": "^1.7.3",
"randexp": "^0.5.3",
"require-all": "^3.0.0"
}
}