-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.82 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "random-weighted-pick",
"version": "1.0.12",
"main": "dist/index.js",
"engines": {
"node": ">=8.9.3"
},
"scripts": {
"build": "babel-node ./scripts/emptyFolder && webpack --config ./webpack.prod.config.js",
"dev": "webpack-dashboard -- webpack-dev-server --content-base src/index --hot --host 0.0.0.0 --config ./webpack.config.js",
"watch": "webpack-dashboard -- webpack --progress --colors --watch --config ./webpack.config.js",
"test": "jest",
"coverage": "npm test -- --coverage"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.26.0",
"babel-jest": "^23.0.0",
"babel-loader": "^8.0.0",
"babel-plugin-add-module-exports": "^1.0.1",
"babel-polyfill": "^6.13.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.14.0",
"chai": "^4.1.2",
"eslint": "^6.0.0",
"eslint-config-airbnb": "^18.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"fs-extra": "^9.0.0",
"jest": "^22.3.0",
"regenerator-runtime": "^0.13.0",
"webpack": "^4.6.0",
"webpack-bundle-analyzer": "^3.0.0",
"webpack-dashboard": "^3.0.0",
"webpack-dev-server": "^3.1.3",
"webpack-node-externals": "^1.6.0"
},
"directories": {
"test": "test"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/phellipeandrade/random-weighted-pick.git"
},
"keywords": [
"random",
"weighted",
"list",
"node"
],
"author": "Phellipe Andrade",
"bugs": {
"url": "https://github.com/phellipeandrade/random-weighted-pick/issues"
},
"homepage": "https://github.com/phellipeandrade/random-weighted-pick/#readme",
"description": "Easily choose a random item from a weighted list of items."
}