-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.7 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "g5-knockout",
"version": "0.3.0",
"description": "Knockout/Browserify base app - MVVM with an event layer.",
"author": "Greg Babula",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/gbabula/g5-knockout"
},
"bugs": {
"url": "https://github.com/gbabula/g5-knockout/issues"
},
"keywords": [
"knockout",
"browserify",
"MVVM",
"events",
"scaffold",
"base"
],
"browserify": {
"transform": [
"brfs",
"babelify"
]
},
"main": "src/scripts/g5-knockout.js",
"scripts": {
"start": "npm run build && python -m SimpleHTTPServer 9966",
"start-dev": "npm run watch & npm start",
"test": "babel-tape-runner test/*.js",
"build-js": "browserify src/scripts/index.js | uglifyjs -mc > src/static/bundle.js",
"build-css": "cat src/styles/*.css > src/static/bundle.css",
"build": "npm run build-js && npm run build-css",
"watch-js": "watchify src/scripts/index.js -o src/static/bundle.js -dv",
"watch-css": "catw src/styles/*.css -o src/static/bundle.css -v",
"watch": "npm run watch-js & npm run watch-css"
},
"dependencies": {
"babel": "^5.5.8",
"babel-tape-runner": "^1.1.0",
"babelify": "^6.1.2",
"brfs": "^1.2.0",
"browserify": "^8.1.1",
"catw": "^0.2.0",
"concat-stream": "^1.4.7",
"duplexer2": "0.0.2",
"escodegen": "^1.6.0",
"falafel": "^0.3.1",
"inherits": "^2.0.1",
"knockout": "^3.3.0",
"lodash": "^2.4.1",
"object-inspect": "^1.0.0",
"readable-stream": "^1.0.33",
"shallow-copy": "0.0.1",
"static-eval": "^0.2.3",
"tape": "^3.2.0",
"uglify-js": "^2.4.16",
"watchify": "^2.2.1",
"xtend": "^4.0.0"
}
}