-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
51 lines (51 loc) · 1.5 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
48
49
50
51
{
"name": "woowahan",
"version": "1.2.2",
"description": "Web application framework for BackboneJS",
"main": "./lib/woowahan.js",
"scripts": {
"build": "run-s clean:* compile relocation bundling",
"clean:lib": "rm -rf lib",
"clean:dist": "rm -rf dist",
"compile": "babel --no-comments --presets es2015 --out-dir lib src/*js src/**/*js",
"relocation": "mv -f lib/src/* lib && rm -rf lib/src",
"bundling": "webpack ./index.js dist/woowahan.js --module-bind js=babel-loader --optimize-minimize",
"proxy-server": "node ./server/proxy.js",
"demo-server": "node ./server/demo.js",
"version-patch": "npm version patch",
"test": "./node_modules/mocha/bin/mocha --require babel-core/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/woowabros/WoowahanJS.git"
},
"keywords": [
"framework",
"backbonejs",
"woowahanjs",
"webapp"
],
"author": "Woowabros",
"license": "MIT",
"bugs": {
"url": "https://github.com/woowabros/WoowahanJS/issues"
},
"homepage": "https://github.com/woowabros/WoowahanJS#readme",
"dependencies": {
"backbone": "^1.3.3",
"jquery": "^2.2.4",
"lodash": "^4.17.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"chai": "^2.3.0",
"mocha": "^2.2.1",
"morgan": "^1.7.0",
"npm-run-all": "^4.1.2",
"uglifyjs-webpack-plugin": "^1.1.8",
"webpack": "^3.10.0"
}
}