-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
84 lines (84 loc) · 1.74 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "mixco",
"description": "Mixco is a framework for making DJ controller scripts for Mixxx.",
"author": "Juan Pedro Bolivar Puente <raskolnikov@gnu.org>",
"homepage": "http://sinusoid.es/mixco",
"contributors": [
{
"name": "Juan Pedro Bolivar Puente",
"email": "raskolnikov@gnu.org"
}
],
"version": "2.0.3",
"keywords": [
"mixxx",
"coffee",
"literate"
],
"repository": {
"type": "git",
"url": "https://github.com/arximboldi/mixco"
},
"engines": {
"node": ">=0.10"
},
"browserify": {
"transform": "coffeeify"
},
"dependencies": {
"argp": "^1.0.4",
"browserify": "^10.2.3",
"chai": "^2.3.0",
"chai-spies": "^0.6.0",
"coffee-script": "latest",
"coffeeify": "^1.1.0",
"colors": "^1.1.0",
"globby": "^2.0.0",
"gulp": "^3.9.0",
"gulp-cached": "^1.1.0",
"gulp-changed": "^1.2.1",
"gulp-mocha": "^2.1.0",
"gulp-rename": "^1.2.2",
"heterarchy": "^1.0.5",
"mocha": "^2.2.5",
"node-promise": "^0.5.12",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"string": "^3.1.3",
"through2": "^0.6.5",
"underscore": "^1.8.3",
"winston": "^1.0.0"
},
"devDependencies": {
"coffee-coverage": "^0.6.0",
"coveralls": "2.10.0",
"docco": "^0.7.0",
"istanbul": "0.3.5"
},
"scripts": {
"test": "make test",
"test-coverage": "make test-coverage",
"prepublish": "make"
},
"files": [
"bin",
"lib",
"src",
"script",
"test",
"index.js",
"makefile"
],
"preferGlobal": true,
"main": "index.js",
"bin": {
"mixco": "./bin/mixco.js"
},
"directories": {
"doc": "./doc",
"man": "./man",
"lib": "./lib",
"bin": "./bin"
},
"license": "GPL-3.0+"
}