-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
57 lines (57 loc) · 1.13 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "grasp",
"author": "George Zahariev",
"version": "0.6.0",
"homepage": "http://graspjs.com",
"description": "JavaScript structural search, replace, and refactor",
"keywords": [
"javascript",
"search",
"replace",
"refactor",
"structural",
"ast"
],
"files": [
"bin",
"lib",
"README.md",
"LICENSE"
],
"main": "./lib/",
"bin": {
"grasp": "./bin/grasp"
},
"bugs": "https://github.com/gkz/grasp/issues",
"license": "MIT",
"engines": {
"node": ">= 0.8.0"
},
"repository": {
"type": "git",
"url": "git://github.com/gkz/grasp.git"
},
"scripts": {
"test": "make test",
"build": "make build"
},
"dependencies": {
"flow-parser": "^0.*",
"prelude-ls": "^1.1.2",
"cli-color": "^1.1.0",
"async": "^1.5.0",
"optionator": "^0.8.0",
"grasp-squery": "^0.4.0",
"grasp-equery": "^0.4.0",
"grasp-syntax-javascript": "^0.2.0",
"levn": "^0.3.0",
"minimatch": "^3.0.3",
"slash": "^1.0.0"
},
"devDependencies": {
"livescript": "^1.5.0",
"mocha": "^2.3.4",
"istanbul": "^0.4.1"
},
"preferGlobal": true
}