-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 935 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
{
"name": "jscode-find-callee",
"version": "0.1.0",
"description": "find calls at sourcecode",
"main": "index.js",
"scripts": {
"test": "node bin/jscode-find-callee --name console fixtures/console_log_2.js",
"lint": "eslint .",
"lint-fix": "eslint --fix ."
},
"bin": {
"jscode-find-callee": "bin/jscode-find-callee"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paulvollmer/jscode-find-callee.git"
},
"keywords": [
"ast",
"find"
],
"author": "paulvollmer",
"license": "MIT",
"bugs": {
"url": "https://github.com/paulvollmer/jscode-find-callee/issues"
},
"homepage": "https://github.com/paulvollmer/jscode-find-callee#readme",
"dependencies": {
"escodegen": "^1.11.0",
"esprima": "^4.0.1",
"estraverse": "^4.2.0",
"optimist": "^0.6.1"
},
"devDependencies": {
"eslint": "5.5.0",
"eslint-config-google": "0.10.0"
}
}