forked from estools/escodegen
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 1.82 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "escodegen-wallaby",
"description": "ECMAScript code generator with JSX support",
"homepage": "http://github.com/wallabyjs/escodegen",
"main": "escodegen.js",
"bin": {
"esgenerate": "./bin/esgenerate.js",
"escodegen": "./bin/escodegen.js"
},
"files": [
"LICENSE.BSD",
"LICENSE.source-map",
"README.md",
"bin",
"escodegen.js",
"package.json"
],
"version": "1.6.45",
"engines": {
"node": ">=0.10.0"
},
"maintainers": [
{
"name": "Artem Govorov",
"email": "artem.govorov@gmail.com",
"web": "http://dm.gl"
}
],
"repository": {
"type": "git",
"url": "http://github.com/wallabyjs/escodegen.git"
},
"dependencies": {
"estraverse": "^1.9.1",
"esutils": "^2.0.2",
"esprima": "^2.7.1",
"optionator": "^0.8.1"
},
"optionalDependencies": {
"source-map": "~0.2.0"
},
"devDependencies": {
"acorn": "^2.7.0",
"bluebird": "^2.3.11",
"bower-registry-client": "^0.2.1",
"chai": "^1.10.0",
"commonjs-everywhere": "^0.9.7",
"gulp": "^3.8.10",
"gulp-eslint": "^0.2.0",
"gulp-mocha": "^2.0.0",
"semver": "^5.1.0"
},
"licenses": [
{
"type": "BSD",
"url": "http://github.com/wallabyjs/escodegen/raw/master/LICENSE.BSD"
}
],
"scripts": {
"test": "gulp travis",
"unit-test": "gulp test",
"lint": "gulp lint",
"release": "node tools/release.js",
"build-min": "./node_modules/.bin/cjsify -ma path: tools/entry-point.js > escodegen.browser.min.js",
"build": "./node_modules/.bin/cjsify -a path: tools/entry-point.js > escodegen.browser.js"
}
}