UNPKG

1.73 kBJSONView Raw
1{
2 "name": "escodegen",
3 "description": "ECMAScript code generator",
4 "homepage": "http://github.com/estools/escodegen",
5 "main": "escodegen.js",
6 "bin": {
7 "esgenerate": "./bin/esgenerate.js",
8 "escodegen": "./bin/escodegen.js"
9 },
10 "files": [
11 "LICENSE.BSD",
12 "README.md",
13 "bin",
14 "escodegen.js",
15 "package.json"
16 ],
17 "version": "2.0.0",
18 "engines": {
19 "node": ">=6.0"
20 },
21 "maintainers": [
22 {
23 "name": "Yusuke Suzuki",
24 "email": "utatane.tea@gmail.com",
25 "web": "http://github.com/Constellation"
26 }
27 ],
28 "repository": {
29 "type": "git",
30 "url": "http://github.com/estools/escodegen.git"
31 },
32 "dependencies": {
33 "estraverse": "^5.2.0",
34 "esutils": "^2.0.2",
35 "esprima": "^4.0.1",
36 "optionator": "^0.8.1"
37 },
38 "optionalDependencies": {
39 "source-map": "~0.6.1"
40 },
41 "devDependencies": {
42 "acorn": "^7.3.1",
43 "bluebird": "^3.4.7",
44 "bower-registry-client": "^1.0.0",
45 "chai": "^4.2.0",
46 "chai-exclude": "^2.0.2",
47 "commonjs-everywhere": "^0.9.7",
48 "gulp": "^3.8.10",
49 "gulp-eslint": "^3.0.1",
50 "gulp-mocha": "^3.0.1",
51 "semver": "^5.1.0"
52 },
53 "license": "BSD-2-Clause",
54 "scripts": {
55 "test": "gulp travis",
56 "unit-test": "gulp test",
57 "lint": "gulp lint",
58 "release": "node tools/release.js",
59 "build-min": "./node_modules/.bin/cjsify -ma path: tools/entry-point.js > escodegen.browser.min.js",
60 "build": "./node_modules/.bin/cjsify -a path: tools/entry-point.js > escodegen.browser.js"
61 }
62}