-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
61 lines (61 loc) · 1.58 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": "bash-parser",
"version": "0.5.0",
"main": "src/index.js",
"description": "Standard compliant bash parser",
"repository": "vorpaljs/bash-parser",
"license": "MIT",
"author": "vorpal-js",
"scripts": {
"doc": "doctoc",
"test": "ava && xo --ignore **/built-grammar.js",
"build": "mgb ./src/modes posix && mgb ./src/modes bash && mgb ./src/modes word-expansion",
"cover-test": "nyc ava && xo --ignore **/built-grammar.js",
"cover-publish": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [],
"engines": {
"node": ">=4"
},
"devDependencies": {
"ava": "^0.15.2",
"coveralls": "^2.11.11",
"doctoc": "^1.2.0",
"json5": "^0.5.0",
"mode-grammar-builder": "^0.6.0",
"nyc": "^7.0.0",
"xo": "^0.16.0"
},
"files": [
"src"
],
"nyc": {
"exclude": [
"src/modes/posix/built-grammar.js",
"test/_utils.js"
]
},
"dependencies": {
"array-last": "^1.1.1",
"babylon": "^6.9.1",
"compose-function": "^3.0.3",
"curry": "^1.2.0",
"deep-freeze": "0.0.1",
"filter-iterator": "0.0.1",
"filter-obj": "^1.1.0",
"has-own-property": "^0.1.0",
"identity-function": "^1.0.0",
"iterable-lookahead": "^1.0.0",
"iterable-transform-replace": "^1.1.1",
"magic-string": "^0.16.0",
"map-iterable": "^1.0.1",
"map-obj": "^2.0.0",
"object-pairs": "^0.1.0",
"object-values": "^1.0.0",
"reverse-arguments": "^1.0.0",
"shell-quote-word": "^1.0.1",
"to-pascal-case": "^1.0.0",
"transform-spread-iterable": "^1.1.0",
"unescape-js": "^1.0.5"
}
}