-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.1 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
{
"author": "Juan Pedro Bolivar Puente",
"name": "heterarchy",
"description": "Cooperative multiple inheritance for CoffeeScript, á-la Python",
"contributors": [
{
"name": "Juan Pedro Bolivar Puente",
"email": "[email protected]"
}
],
"version": "1.0.7",
"keywords": [
"inheritance",
"coffeescript",
"coffee",
"mro",
"python"
],
"repository": {
"type": "git",
"url": "https://github.com/arximboldi/heterarchy"
},
"engines": {
"node": ">=0.10"
},
"dependencies": {
"coffee-script": "latest",
"underscore": ">=1.3.0"
},
"devDependencies": {
"chai": "^2.3.0",
"coffee-coverage": "0.6",
"coffeelint": "^1.15.7",
"coveralls": "2.10.0",
"docco": ">=0.6",
"istanbul": "0.3.5",
"mocha": "^2.2.5",
"mocha-phantomjs": "^4.1.0"
},
"scripts": {
"test": "make test",
"test-coverage": "make test-coverage",
"lint": "make lint",
"travis": "make travis",
"prepublish": "make",
"pretest": "make"
},
"files": [
"lib/heterarchy.js"
],
"main": "lib/heterarchy.js",
"license": "MIT"
}