forked from chris-l/php-unparser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 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
{
"name": "@htmlacademy/php-unparser",
"version": "0.2.10",
"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": "[email protected]:htmlacademy/php-unparser.git"
},
"keywords": [
"unparser",
"php",
"ast"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"author": "Christopher Luna <[email protected]>",
"license": "MIT",
"devDependencies": {
"browserify": "13.1.1",
"coveralls": "^2.11.15",
"istanbul": "^0.4.5",
"jasmine-node": "1.14.5",
"jslint": "0.9.6",
"php-parser": "^2.2.0",
"uglifyjs": "2.4.10"
}
}