-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.82 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
64
65
66
67
68
{
"name": "g5-knockout-dot",
"version": "0.1.1",
"description": "Component base with KnockoutJS and doT templating",
"author": "Greg Babula",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/MajorLeagueBaseball/g5-knockout-dot"
},
"bugs": {
"url": "https://github.com/MajorLeagueBaseball/g5-knockout-dot/issues"
},
"keywords": [
"knockout",
"browserify",
"MVVM",
"events",
"scaffold",
"base",
"dot",
"dot templating"
],
"main": "src/scripts/g5-knockout-dot.js",
"browserify": {
"transform": [
"brfs",
"babelify"
]
},
"scripts": {
"start": "npm run build && python -m SimpleHTTPServer 9966",
"start-dev": "npm run watch & npm start",
"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 -t brfs 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",
"test": "babel-tape-runner test/*.js"
},
"dependencies": {
"browserify": "^8.1.1",
"catw": "^0.2.0",
"concat-stream": "^1.4.7",
"dot": "^1.0.3",
"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",
"xtend": "^4.0.0"
},
"devDependencies": {
"babel": "^5.5.6",
"babel-tape-runner": "^1.1.0",
"babelify": "^6.1.2",
"brfs": "^1.2.0",
"tape": "^4.0.0",
"uglify-js": "^2.4.16",
"watchify": "^2.2.1"
}
}