-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 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
{
"name": "@pelevesque/wrap-number",
"version": "0.0.5",
"description": "Wraps a number inside a range.",
"main": "index.js",
"engines": {
"node": ">=9.0.0"
},
"scripts": {
"test": "standard && mocha --reporter spec && node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*",
"standard": "standard",
"unit": "mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pelevesque/wrap-number.git"
},
"keywords": [
"math",
"number",
"wrap",
"range",
"modulo"
],
"author": "Pierre-Emmanuel Lévesque <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pelevesque/wrap-number/issues"
},
"homepage": "https://github.com/pelevesque/wrap-number#readme",
"directories": {
"test": "test"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"istanbul": "^0.4.5",
"mocha": "^7.0.1",
"standard": "^14.3.1"
}
}