-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.99 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
{
"name": "dice_parser",
"version": "0.1.0",
"description": "d20 dice parsing library",
"main": "dist/lib.js",
"author": "capitN.flam",
"license": "MIT",
"private": true,
"scripts": {
"build-parser": "pegjs src/dice_parser.pegjs",
"build": "yarn run build-parser && babel src -d dist",
"prepublish": "yarn run build",
"clean": "rimraf src/dice_parser.js && rimraf dist",
"test": "jest tests/",
"coverage": "yarn test --coverage",
"lint": "eslint src/*.js tests/*.js",
"format": "prettier --write src/*.js tests/*.js",
"flow": "flow"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.3",
"babel-plugin-source-map-support": "^2.0.1",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-flow": "^1.0.1",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-eslint-comments": "^2.0.2",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.1",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"flow-bin": "^0.71.0",
"flow-typed": "^2.4.0",
"jest": "^22.4.3",
"jest-mock-random": "^1.0.2",
"pegjs": "^0.10.0",
"prettier": "^1.12.1",
"prettier-eslint": "^8.8.1",
"prompts": "^1.2.1",
"rimraf": "^2.6.2"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"source-map-support": "^0.5.5"
}
}