forked from pugjs/babel-walk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 754 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 754 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
32
33
34
{
"name": "babylon-walk",
"version": "1.0.2",
"description": "Lightweight Babylon AST traversal",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"prepublish": "babel -d lib src"
},
"repository": {
"type": "git",
"url": "https://github.com/pugjs/babylon-walk.git"
},
"engines": {
"node": ">= 6.0.0"
},
"author": "Timothy Gu <timothygu99@gmail.com>",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.0.0",
"@babel/types": "^7.0.0",
"lodash.clone": "^4.5.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0"
}
}