-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "random-weighted-choice",
"version": "0.1.4",
"engines": {
"node": "*"
},
"author": "François Parmentier",
"main": "lib/random-weighted-choice.js",
"readmeFilename": "README.md",
"description": "Node.js module to make a random choice among weighted elements of table.",
"dependencies": {
"debug": "^2.2.0"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-eslint": "^5.0.0-beta6",
"babel-istanbul": "^0.5.9",
"babel-preset-es2015": "^6.3.13",
"codecov.io": "^0.1.6",
"eslint": "^1.10.3",
"mocha": "^2.3.4"
},
"scripts": {
"build": "babel src --out-dir lib --source-maps inline",
"coverage-report": "cat ./coverage/lcov.info | codecov",
"prepublish": "npm run build",
"test": "babel-istanbul cover ./node_modules/mocha/bin/_mocha"
},
"homepage": "http://github.com/parmentf/random-weighted-choice",
"repository": {
"type": "git",
"url": "https://github.com/parmentf/random-weighted-choice.git"
},
"keywords": [
"random",
"weighted"
],
"license": "MIT"
}