-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
65 lines (65 loc) · 1.47 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
{
"name": "@tonejs/piano",
"version": "0.2.0",
"description": "Web Audio instrument using Salamander Grand Piano samples",
"repository": {
"url": "https://github.com/tambien/Piano"
},
"browser": "build/Piano.js",
"main": "build/esm/Piano.js",
"module": "build/esm/Piano.js",
"type": "module",
"unpkg": "build/Piano.js",
"types": "build/esm/Piano.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"increment": "npm version v$(semver --increment $(npm show @tonejs/piano version)) --git-tag-version=false --allow-same-version",
"lint": "tslint --project tsconfig.json --fix",
"test": "karma start test/karma.conf.js",
"watch": "tsc --watch"
},
"files": [
"README.md",
"LICENSE",
"build",
"src",
"scripts"
],
"author": "Yotam Mann",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^12.6.2",
"chai": "^4.2.0",
"karma": "^5.0.2",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.0",
"karma-typescript": "^5.0.2",
"mocha": "^7.1.1",
"npm-run-all": "^4.1.5",
"semver": "^5.5.0",
"static-server": "^2.2.1",
"tone": "^14.6.1",
"ts-loader": "^7.0.1",
"tslint": "^5.18.0",
"typescript": "^3.8.3",
"webmidi": "^2.5.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"peerDependencies": {
"tone": "^14.6.1",
"webmidi": "^2.5.1"
},
"keywords": [
"Web Audio",
"Tone.js",
"Piano",
"Sampler"
],
"dependencies": {
"tslib": "^1.11.1"
}
}