-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.38 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
{
"name": "open-epsilon",
"version": "1.0.3",
"description": "empty-epsilon / open-sound-control bidirectional proxy",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"clean": "rimraf ./dist",
"build": "tsc -d",
"pretest": "npm run clean && npm run build",
"reset": "rimraf node_modules dist && npm install && npm test",
"test": "mocha --require test-setup.js --reporter list \"dist/test/**/*.spec.js\""
},
"repository": {
"type": "git",
"url": "git@github.com:CommaSword/open-epsilon.git"
},
"keywords": [
"empty epsilon",
"OSC",
"open-sound-control"
],
"author": "Amir Arad <greenshade@gmail.com>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/CommaSword/open-epsilon/issues"
},
"homepage": "https://github.com/CommaSword/open-epsilon#readme",
"devDependencies": {
"@types/chai": "~4.0.4",
"@types/mocha": "^5.2.7",
"@types/node": "8.0.33",
"@types/sinon": "~2.3.1",
"@types/sinon-chai": "^2.7.29",
"chai": "~4.1.2",
"mocha": "^6.2.0",
"rimraf": "~2.6.1",
"sinon": "~2.3.5",
"sinon-chai": "^2.14.0",
"ts-node": "10.0.0",
"tslib": "^2.3.0",
"typescript": "4.3.5"
},
"dependencies": {
"empty-epsilon-js": "2.0.1",
"kissfs": "^0.7.1",
"naming": "^1.0.6",
"osc": "^2.4.1",
"rxjs": "^6.5.3",
"rxjs-compat": "^6.5.3"
}
}