forked from estools/esquery
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1 KB
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": "@gerhobbelt/esquery",
"preferGlobal": false,
"version": "1.0.1-8",
"author": "Joel Feenstra <jrfeenst+esquery@gmail.com>",
"description": "A query library for ECMAScript AST using a CSS selector like query language.",
"main": "esquery.js",
"files": [
"esquery.js",
"parser.js",
"license.txt",
"README.md"
],
"scripts": {
"build": "make clean && make",
"test": "make test",
"pub": "npm publish --access public",
"changelog": "changelog -m -a all"
},
"repository": {
"type": "git",
"url": "https://github.com/GerHobbelt/esquery.git"
},
"keywords": [
"ast",
"ecmascript",
"javascript",
"query"
],
"devDependencies": {
"@gerhobbelt/ast-types": "0.10.1-15",
"@gerhobbelt/changelog": "1.4.1-9",
"commonjs-everywhere": "0.9.7",
"esprima": "4.0.0",
"mocha": "4.0.1",
"pegjs": "0.10.0"
},
"license": "BSD-3-Clause",
"engines": {
"node": ">=4.0"
},
"dependencies": {
"estraverse": "4.2.0"
}
}