-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
58 lines (58 loc) · 1.1 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
{
"name": "shell-parse",
"version": "0.0.2",
"description": "Parse bash scripts into AST's",
"main": "parser.js",
"dependencies": {
"array-map": "0.0.0",
"isarray": "0.0.1",
"parsimmon": "^0.7.0"
},
"scripts": {
"test": "tape tests/*.js",
"watch": "npm run prepublish && node build.js -w",
"prepublish": "node build.js > parser.js"
},
"testling": {
"files": "tests/*.js",
"browsers": {
"ie": [
8,
9,
10
],
"firefox": [
"3.5",
"nightly"
],
"opera": [
11,
17
],
"safari": [
"5.1"
]
}
},
"devDependencies": {
"pegjs": "~0.9.0",
"pegjs-override-action": "0.2.3",
"tape": "^4.5.1",
"markdown-code-blocks": "0.0.1",
"xtend": "~2.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/grncdr/js-shell-parse.git"
},
"keywords": [
"sh",
"posix",
"shell"
],
"author": "Stephen Sugden <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/grncdr/js-shell-parse/issues"
}
}