-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 918 Bytes
/
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
{
"name": "ml-mixin",
"version": "0.1.0",
"description": "Mixin pattern, but implemented with mixin as an object which proxies it's methods to the host object",
"main": "lib/mixin.js",
"scripts": {
"test-spec": "NODE_ENV=test ./node_modules/.bin/mocha --recursive --reporter=spec",
"test": "jshint lib/mixin.js && NODE_ENV=test istanbul cover -x 'test' node_modules/mocha/bin/_mocha -- --recursive --reporter=spec"
},
"repository": {
"type": "git",
"url": "https://github.com/milojs/ml-mixin.git"
},
"author": "",
"license": "BSD",
"bugs": {
"url": "https://github.com/milojs/ml-mixin/issues"
},
"homepage": "https://github.com/milojs/ml-mixin",
"dependencies": {
"ml-check": "^0.1.1"
},
"devDependencies": {
"async": "^2.0.1",
"benchmark": "^2.1.1",
"istanbul": "^0.4.0",
"jshint": "^2.9.2",
"mocha": "^3.0.2",
"protojs": "^1.0.3"
}
}