forked from chris-l/php-unparser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1010 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1010 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
29
30
31
{
"name": "php-unparser",
"version": "0.2.3",
"description": "Unparse the AST produced by glayzzle/php-parser back to code.",
"main": "index.js",
"scripts": {
"test": "make test",
"prebuild": "node node_modules/jslint/bin/jslint.js --indent 2 --color package.json index.js node_translators/*.js node_translators/**/*.js && node test/index.js",
"build": "node node_modules/browserify/bin/cmd.js index.js -s phpUnparser -o ./dist/php-unparser.js",
"postbuild": "node node_modules/uglifyjs/bin/uglifyjs ./dist/php-unparser.js -o ./dist/php-unparser.min.js"
},
"repository": {
"type": "git",
"url": "git@github.com:chris-l/php-unparser.git"
},
"keywords": [
"unparser",
"php",
"ast"
],
"author": "Christopher Luna <dev@christopher-luna.com>",
"license": "MIT",
"devDependencies": {
"browserify": "13.1.1",
"coveralls": "^2.11.15",
"istanbul": "^0.4.5",
"jslint": "0.9.6",
"php-parser": "^2.0.0-pre7",
"uglifyjs": "2.4.10"
}
}