-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"name": "gulp-transform-js-ast",
"version": "1.0.2",
"description": "Gulp plugin to transform a javascript AST using recast visitors",
"keywords": [
"gulp",
"plugin",
"recast",
"ast",
"visitor",
"visit",
"transform",
"javascript",
"js"
],
"homepage": "https://github.com/ntdaley/gulp-transform-js-ast",
"issues": "https://github.com/ntdaley/gulp-transform-js-ast/issues",
"license": "Apache-2.0",
"author": "Nicholas Daley",
"files": [
"index.js"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ntdaley/gulp-transform-js-ast.git"
},
"dependencies": {
"ast-types": "^0.6.6",
"convert-source-map": "^0.4.1",
"gulp-util": "^3.0.1",
"multi-stage-sourcemap": "^0.2.1",
"recast": "^0.9.6",
"through2": "^0.6.3",
"vinyl-sourcemaps-apply": "^0.1.4"
},
"bugs": {
"url": "https://github.com/ntdaley/gulp-transform-js-ast/issues"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
}
}