-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.39 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
{
"name": "zero-chance",
"version": "0.2.0",
"description": "Give you a result from random calculation by decimal scoring",
"main": "/src/index.js",
"lib": "ZeroChance",
"npmName": "zero-chance",
"npmFileMap": [
{
"basePath": "lib",
"files": [
"**/*"
]
}
],
"scripts": {
"build": "webpack --env dev && webpack --env build",
"dev": "webpack --progress --colors --watch --env dev && npm run test",
"test": "mocha --require babel-core/register --colors ./test/*.spec.js",
"test:watch": "mocha --require babel-core/register --colors -w ./test/*.spec.js"
},
"repository": {
"type": "git",
"url": "https://github.com/muhibbudins/zero-chance.git"
},
"keywords": [
"webpack",
"umd",
"template",
"es6 library",
"library",
"chance",
"probability"
],
"author": "Muhibbudin Suretno <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/muhibbudins/zero-chance/issues"
},
"homepage": "https://github.com/muhibbudins/zero-chance",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"babel-preset-es2015": "6.24.1",
"eslint": "7.3.0",
"eslint-loader": "4.0.2",
"mocha": "8.0.1",
"uglifyjs-webpack-plugin": "1.3.0",
"webpack": "3.12.0",
"yargs": "15.3.1"
}
}