-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.14 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
{
"name": "derbyshire",
"version": "0.0.0",
"description": "A simple, modern, modular WebAudioAPI library.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/baphomet-berlin/derbyshire.git"
},
"scripts": {
"start": "http-server",
"watch": "watchify ./src/Derbyshire.es6 -t babelify -o build/Derbyshire.js",
"test": "browserify-test --transform [ babelify --presets es2015 ] -w ./test/main.es6"
},
"browserify": {
"transforms": [
"babelify"
]
},
"author": "Claudio Brandolino <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/baphomet-berlin/derbyshire/issues"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-eslint": "^5.0.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"browserify-test": "^2.1.2",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^5.0.0",
"eslint-plugin-react": "^3.16.1",
"faucet": "0.0.1",
"mocha": "^2.4.5",
"phantomjs": "^2.1.3",
"should": "^8.2.1",
"should-type": "^0.2.0",
"tape": "^4.4.0",
"tape-run": "^2.1.3",
"watchify": "^3.7.0"
}
}