-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·45 lines (45 loc) · 937 Bytes
/
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
{
"name": "ecma-search",
"version": "0.2.5",
"description": "Search ECMAScript Structurally",
"main": "dist/index.js",
"scripts": {
"build": "babel src -d dist --source-maps",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jdonaghue/es-search.git"
},
"keywords": [
"search javascript",
"search ecmascript",
"search",
"ast",
"babel-parser",
"babel-traverse",
"babel"
],
"author": "James Donaghue",
"license": "MIT",
"engines": {
"node": ">=6"
},
"files": [
"index.js",
"dist"
],
"dependencies": {
"@babel/code-frame": "^7.0.0",
"@babel/parser": "^7.1.5",
"@babel/traverse": "^7.1.5",
"@babel/types": "^7.1.5",
"colors": "^1.3.1",
"lodash": "^4.17.11"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.5",
"@babel/preset-env": "^7.1.5"
}
}