-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 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
32
33
34
35
36
37
{
"name": "milo-core",
"version": "1.1.2",
"description": "node.js compatible part of milo",
"main": "lib/milo-core.js",
"browserify": {
"transform": [
"brfs"
]
},
"scripts": {
"test-spec": "NODE_ENV=test ./node_modules/.bin/mocha --recursive --reporter=spec",
"test": "NODE_ENV=test istanbul cover -x 'test' node_modules/mocha/bin/_mocha -- --recursive --reporter=spec"
},
"repository": {
"type": "git",
"url": "https://github.com/milojs/milo-core.git"
},
"author": "",
"license": "BSD",
"bugs": {
"url": "https://github.com/milojs/milo-core/issues"
},
"homepage": "https://github.com/milojs/milo-core",
"dependencies": {
"dot": "^1.0.3",
"ml-check": "^0.1.1",
"ml-mixin": "^0.1.0",
"protojs": "^1.0.5"
},
"devDependencies": {
"async": "^2.0.1",
"benchmark": "^2.1.1",
"istanbul": "^0.4.0",
"mocha": "^3.0.2"
}
}