-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 765 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 765 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
35
36
37
38
39
{
"name": "esprima-walk",
"version": "0.1.0",
"description": "Walk the primary nodes of an esprima parse tree - fast.",
"main": "esprima-walk.js",
"repository": {
"type": "git",
"url": "git://github.com/jrajav/esprima-walk.git"
},
"devDependencies": {
"mocha": "~1.19.0",
"chai": "~1.9.1",
"eslint": "~0.6.2"
},
"scripts": {
"test": "node_modules/eslint/bin/eslint.js . && node_modules/mocha/bin/mocha --reporter spec test.js"
},
"keywords": [
"esprima",
"parse",
"parser",
"source",
"code",
"ast",
"syntax",
"tree",
"walk",
"walker",
"traverse",
"fast",
"quick",
"quickly",
"performant",
"performance"
],
"author": "Jonathan Rajavuori <jrajav@gmail.com>",
"license": "MIT",
"readmeFilename": "README.md"
}