-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 831 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 831 Bytes
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
{
"name": "bash-parser-playground",
"version": "0.5.0",
"description": "Playground website for bash-parser",
"repository": "vorpaljs/bash-parser-playground",
"license": "MIT",
"author": "Andrea Parodi <andrea@parro.it>",
"scripts": {
"test": "xo",
"serve": "serve docs",
"clean": "rm -rf docs && mkdir docs",
"copy": "cp ./*.html docs",
"browserify": "browserify index.js -o docs/bundle.js -t [ babelify --presets [ es2015 ] ] -t uglifyify",
"build-site": "npm run clean && npm run browserify && npm run copy"
},
"devDependencies": {
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"serve": "^5.2.4",
"uglifyify": "^3.0.2",
"xo": "^0.16.0"
},
"dependencies": {
"bash-parser": "^0.4.0"
}
}