-
Notifications
You must be signed in to change notification settings - Fork 109
/
package.json
55 lines (55 loc) · 1.51 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
{
"name": "roll-call",
"version": "0.0.0-development",
"description": "",
"main": "components/index.js",
"scripts": {
"start": "budo index.js:bundle.js",
"build": "browserify index.js > bundle.js",
"commit": "git-cz",
"test": "standard",
"prepublish": "mkdir -p dist && browserify dist.js > dist/rollcall.js && cat dist/rollcall.js | minify > dist/rollcall.min.js",
"precommit": "npm test",
"prepush": "npm test",
"commitmsg": "validate-commit-msg",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"standard": {
"ignore": [
"dist"
]
},
"repository": {
"type": "git",
"url": "https://github.com/mikeal/roll-call.git"
},
"keywords": [],
"author": "Mikeal Rogers <mikeal.rogers@gmail.com> (http://www.mikealrogers.com)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mikeal/roll-call/issues"
},
"homepage": "https://github.com/mikeal/roll-call#readme",
"devDependencies": {
"babel-minify": "^0.2.0",
"browserify": "^14.4.0",
"budo": "^10.0.4",
"husky": "^0.14.3",
"standard": "^10.0.3",
"semantic-release": "^8.0.3"
},
"dependencies": {
"bel": "^5.1.2",
"drag-drop": "^2.13.2",
"get-user-media-promise": "^1.1.1",
"getusermedia": "^2.0.1",
"killa-beez": "^3.3.0",
"load-js": "^2.0.0",
"once": "^1.4.0",
"typedarray-to-buffer": "^3.1.2",
"waudio": "^2.7.0",
"xhr": "^2.4.0",
"zcomponent": "^1.0.4",
"znode": "^1.1.3"
}
}