forked from davidbonnet/astravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.27 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
{
"name": "astravel",
"version": "0.3.13",
"description": "ESTree-compliant AST walker and modifier.",
"main": "./dist/astravel.min.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha test/index.js",
"prepublish": "./node_modules/browserify/bin/cmd.js --transform [ babelify ] --plugin [ minifyify --no-map ] --no-builtins --standalone astravel --require ./src/astravel.js:astravel --outfile dist/astravel.min.js",
"build": "./node_modules/browserify/bin/cmd.js --transform [ babelify ] --no-builtins --standalone astravel --require ./src/astravel.js:astravel --outfile dist/astravel.js",
"start": "./node_modules/watchify/bin/cmd.js --transform [ babelify ] --no-builtins --debug --verbose --standalone astravel --require ./src/astravel.js:astravel --outfile dist/astravel.debug.js"
},
"keywords": [
"ast",
"ast walker",
"ast modifier",
"estree"
],
"repository": {
"type": "git",
"url": "https://github.com/davidbonnet/astravel.git"
},
"author": "David Bonnet <[email protected]>",
"license": "MIT",
"devDependencies": {
"acorn": "^2.1.0",
"astring": "^0.4.5",
"babelify": "^6.1.3",
"browserify": "^11.0.1",
"eslint": "^1.10.1",
"minifyify": "^7.0.3",
"mocha": "^2.2.5",
"watchify": "^3.3.1"
}
}