59 lines
1.1 KiB
JSON
59 lines
1.1 KiB
JSON
|
{
|
||
|
"name": "shell-parse",
|
||
|
"version": "0.0.2",
|
||
|
"description": "Parse bash scripts into AST's",
|
||
|
"main": "parser.js",
|
||
|
"dependencies": {
|
||
|
"isarray": "0.0.1",
|
||
|
"array-map": "0.0.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.8.0",
|
||
|
"pegjs-override-action": "0.0.7",
|
||
|
"tape": "~2.3.2",
|
||
|
"covert": "~0.2.0",
|
||
|
"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 <me@stephensugden.com>",
|
||
|
"license": "MIT",
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/grncdr/js-shell-parse/issues"
|
||
|
}
|
||
|
}
|