-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.32 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.32 KB
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
{
"name": "cocktail",
"description": "CocktailJS is a small library to explore traits, talents, inheritance and annotations concepts in nodejs - Shake your objects and classes with Cocktail!",
"version": "0.7.3",
"homepage": "http://cocktailjs.github.io",
"author": {
"name": "Maximiliano Fierro",
"email": "elmasse@gmail.com"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/CocktailJS/cocktail/blob/master/LICENSE-MIT"
}
],
"repository": {
"type": "git",
"url": "https://github.com/CocktailJS/cocktail.git"
},
"bugs": {
"url": "https://github.com/CocktailJS/cocktail/issues"
},
"main": "lib/cocktail",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "npm run lint && npm run unit && npm run integration",
"unit": "mocha --recursive test/unit/",
"integration": "mocha --recursive test/integration/",
"lint": "eslint --quiet lib/ test/",
"coverage": "istanbul cover _mocha -- -u exports --recursive test"
},
"devDependencies": {
"chai": "~3.5.0",
"eslint": "^2.11.1",
"istanbul": "^0.4.3",
"mocha": "~2.5.3",
"sinon": "~1.17.4",
"sinon-chai": "~2.8"
},
"keywords": [
"oop",
"extends",
"annotations",
"traits",
"talents",
"properties",
"mix",
"class",
"inheritance"
]
}