-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.95 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
69
70
{
"name": "towerfall-tournament",
"version": "1.0.0",
"description": "app for the towerfall tournament",
"main": "index.js",
"scripts": {
"js": "browserify -e source/js/index.js -d -o build/bundle.js",
"sass": "node-sass source/sass/ --include-path node_modules/ -q -o build/",
"img": "imagemin-newer source/img/ build",
"html": "cp index.html build/index.html",
"predev": "mkdir -p build && npm-run-all js sass img html --parallel",
"dev": "parallelshell 'cd build/ && live-server --port=7777' 'rerun-script'",
"test": "standard"
},
"repository": {
"type": "git",
"url": "https://github.com/pdx-towerfall/tournament.git"
},
"keywords": [
"towerfall"
],
"author": "Paul C Pederson <[email protected]> (http://paulcpederson.com/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/pdx-towerfall/tournament/issues"
},
"homepage": "https://github.com/pdx-towerfall/tournament",
"browserify": {
"transform": [
"dotify",
"babelify"
]
},
"browser": {
"$": "./source/js/lib/$.js",
"events": "./source/js/events.js"
},
"watches": {
"js": "source/js/**",
"sass": "source/sass/**",
"img": "source/img/**",
"html": "index.html"
},
"dependencies": {
"array.from": "^0.2.0",
"dom-closest": "^0.1.0",
"gravatar": "^1.1.1",
"html-to-vdom": "^0.5.5",
"mess": "^0.1.2",
"muid": "^1.0.2",
"object-assign": "^2.0.0",
"tiny-emitter": "^1.0.0",
"vdom-virtualize": "0.0.10",
"virtual-dom": "^2.0.1"
},
"devDependencies": {
"babelify": "^6.0.2",
"browserify": "^9.0.8",
"dotify": "^1.1.0",
"imagemin-newer": "^1.0.1",
"inline-block-grid": "git://github.com/paulcpederson/inline-block-grid.git",
"live-server": "^0.7.1",
"node-sass": "^3.0.0-beta.7",
"npm-run-all": "^1.2.2",
"parallelshell": "^1.1.1",
"rerun-script": "^0.6.0",
"scss-utils": "0.0.1",
"standard": "^3.6.1"
}
}