forked from munckymagik/webaudio-guitar-amp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 840 Bytes
/
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
{
"name": "webaudio-guitar-amp",
"version": "1.0.0",
"description": "A virtual guitar amp that runs in the browser",
"main": "app.js",
"scripts": {
"build": "webpack",
"test": "open index.html",
"lint": "tslint --project tsconfig.json",
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/munckymagik/webaudio-guitar-amp.git"
},
"author": "Dan Munckton <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/munckymagik/webaudio-guitar-amp/issues"
},
"homepage": "https://github.com/munckymagik/webaudio-guitar-amp#readme",
"devDependencies": {
"ts-loader": "2.0.1",
"tslint": "4.5.0",
"tslint-loader": "3.4.2",
"typescript": "2.2.1",
"webpack": "2.2.1",
"webpack-dev-server": "2.4.1"
}
}