-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.66 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
{
"name": "@virtuaw/graphnodes",
"version": "0.8.2",
"description": "Graph based computation for graphical programming interfaces",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"build:watch": "tsc --watch",
"bundle": "tsc-bundle \"./tsconfig.json\"",
"bundle:watch": "tsc-bundle \"./tsconfig.json\" --watch",
"lint": "tslint --project \"./tsconfig.json\"",
"postversion": "git push && git push --tags",
"link": "tsc && cp package.json dist && cp README.md dist && cd dist && npm link",
"dist": "tsc && cp package.json dist && cp README.md dist && cd dist && npm publish"
},
"repository": {
"type": "git",
"url": "[email protected]/virtuaw/graphnodes"
},
"keywords": [
"graph",
"computation",
"graphnodes",
"virtuaw-graphnodes",
"virtuaw"
],
"author": "Tibor Pilz",
"license": "MIT",
"dependencies": {
"@types/webmidi": "^2.0.3",
"note-parser": "^2.0.1",
"tone": "^13.4.9",
"webmidi": "^2.3.3"
},
"devDependencies": {
"@types/expect-puppeteer": "^3.3.1",
"@types/jest": "^24.0.13",
"@types/jest-environment-puppeteer": "^4.0.0",
"@types/node": "^12.0.2",
"@types/puppeteer": "^1.12.4",
"callable-instance": "^1.0.1",
"electron": "^5.0.2",
"jest": "^24.8.0",
"jest-puppeteer": "^4.2.0",
"puppeteer": "^1.17.0",
"puppeteer-firefox": "^0.5.0",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.1",
"tslib": "^1.9.3",
"tslint": "^5.16.0",
"typescript": "^3.4.5",
"typescript-bundle": "^1.0.14",
"web-audio-daw": "^4.5.0",
"web-audio-test-api": "^0.5.2",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2"
}
}