-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 885 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 885 Bytes
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
{
"author": "Panos Kountanis <panosktn@gmail.com>",
"name": "oscillate",
"description": "A JavaScript OSC toolbelt",
"keywords": [
"realtime",
"osc",
"music"
],
"version": "0.0.3",
"repository": {
"type": "git",
"url": "git://github.com/pgk/node-oscillate.git"
},
"engines": {
"node": "~0.10.32"
},
"dependencies": {
"jspack": "0.0.1"
},
"main": "oscillate",
"scripts": {
"test": "./node_modules/.bin/mocha --recursive --reporter dot --recursive --check-leaks tests/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --recursive --check-leaks tests/"
},
"optionalDependencies": {},
"devDependencies": {
"chai": "^1.9.2",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-mocha-test": "^0.12.2",
"mocha": "^2.0.1",
"istanbul": "^0.3.2"
}
}