-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.53 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
{
"name": "babel-plugin-pegjs-inline-precompile",
"version": "0.1.1",
"description": "Babel plugin for inline precompile of pegjs expression",
"license": "MIT",
"repository": "",
"author": "Ming Liu <ming.codes@gmail.com>",
"engines": {
"node": ">=4"
},
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"add-contributor": "all-contributors add",
"precommit": "lint-staged",
"build": "babel src -d lib --ignore *.test.js,__fixtures__",
"prepublish": "npm run build",
"fmt": "prettier --write '**/*.{js,json}'",
"flow": "flow",
"lint": "eslint src",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage --ci --runInBand",
"test:ci": "npm run validate",
"validate": "npm run lint && npm run flow && npm run test"
},
"lint-staged": {
"*.js": [
"git add"
],
"*.json": [
"git add"
]
},
"keywords": [
"babel",
"babel-plugin",
"ast"
],
"devDependencies": {
"all-contributors-cli": "^6.1.2",
"babel-cli": "^6.26.0",
"babel-jest": "^23.0.0",
"babel-log": "^2.0.0",
"babel-plugin-tester": "^5.0.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"eslint": "^5.0.1",
"eslint-config-precure": "^4.9.1",
"flow-bin": "^0.95.0",
"husky": "^1.1.2",
"jest": "^22.0.0",
"lint-staged": "^8.1.5",
"prettier": "^1.14.3"
},
"dependencies": {
"babylon": "^6.18.0",
"pegjs": "^0.10.0"
},
"jest": {
"testURL": "http://localhost"
}
}