-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 899 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 899 Bytes
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
{
"name": "range-calculator",
"version": "1.0.0",
"description": "javascript ranges calculate library / JavaScript区间计算库",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha ./test/*",
"test-ci": "node ./node_modules/istanbul/lib/cli cover node_modules/mocha/bin/_mocha --report lcovonly -- -R spec"
},
"repository": {
"type": "git",
"url": "https://github.com/cyrilluce/Ranges.js.git"
},
"keywords": [
"javascript",
"node",
"range",
"calculate"
],
"author": "cyrilluce",
"license": "MIT",
"bugs": {
"url": "https://github.com/cyrilluce/Ranges.js/issues"
},
"homepage": "https://github.com/cyrilluce/Ranges.js",
"devDependencies": {
"coveralls": "^2.11.2",
"istanbul": "^0.3.17",
"mocha": "^2.2.5",
"mocha-lcov-reporter": "0.0.2"
}
}