-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.87 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
61
62
63
64
65
66
67
68
69
{
"name": "roll-parser",
"version": "2.3.2",
"description": "Parser for classic (2d6+1), simple (2 6 1), and WoD (4d10!>6f1) dice rolls.",
"main": "index.js",
"bin": "bin/roll-parser.js",
"keywords": [
"parser",
"dice",
"roll",
"rpg",
"dnd",
"wod",
"random",
"d20"
],
"homepage": "https://github.com/edloidas/roll-parser#readme",
"bugs": {
"url": "https://github.com/edloidas/roll-parser/issues"
},
"license": "MIT",
"author": "Mikita Taukachou <[email protected]> (https://edloidas.com)",
"files": [
"index.js",
"bin",
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/edloidas/roll-parser.git"
},
"scripts": {
"test": "jest",
"cover": "jest --coverage",
"report": "node_modules/.bin/jest --coverage && cat coverage/lcov.info | node_modules/coveralls/bin/coveralls.js",
"fix": "eslint --fix .",
"api": "rimraf api/ && jsdoc -c .jsdocrc",
"clean": "rimraf dist/*",
"build:bundle": "browserify index.js --debug --standalone rollParser -o dist/roll-parser.js",
"build:minify": "babili dist/roll-parser.js --out-file dist/roll-parser.min.js",
"build": "npm run build:bundle && npm run build:minify",
"prepush": "npm test",
"prepublishOnly": "npm run fix && npm test && npm run clean && npm run build"
},
"dependencies": {
"minimist": "^1.2.0"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-preset-babili": "^0.1.2",
"babili": "^0.1.2",
"browserify": "^14.4.0",
"coveralls": "^2.13.1",
"docdash": "^0.4.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"husky": "^0.13.4",
"istanbul": "^0.4.5",
"jest": "^20.0.4",
"jsdoc": "^3.4.3",
"rimraf": "^2.6.1"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.8.6"
}
}