forked from jsoverson/shift-refactor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 997 Bytes
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 997 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
40
41
42
43
44
45
46
47
48
{
"name": "shift-refactor",
"version": "0.3.1",
"description": "A suite of utilities to query and modify JavaScript source",
"main": "src/index.js",
"repository": {
"type": "git",
"url": ""
},
"files": [
"src",
"readme.md"
],
"keywords": [
"refactor",
"javascript",
"ecmascript",
"ast",
"shift",
"esprima",
"esquery",
"spidermonkey",
"acorn",
"babel"
],
"dependencies": {
"@jsoverson/shift-codegen": "^7.0.0",
"shift-parser": "^7.0.0",
"shift-query": "^1.0.0",
"shift-scope": "^4.0.0",
"shift-traverser": "^1.0.0",
"shift-validator": "^4.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.1.0",
"mocha": "^5.2.0",
"prettier": "^1.18.2",
"shift-ast": "^6.0.0"
},
"scripts": {
"test": "mocha test",
"lint": "eslint src test",
"format": "prettier --write 'src/**/*.js' 'test/**/*.js'"
},
"author": "Jarrod Overson",
"license": "Apache-2.0"
}