forked from gkz/grasp-squery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 920 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
39
40
41
42
43
44
45
{
"name": "grasp-squery",
"version": "0.4.0",
"author": "George Zahariev <z@georgezahariev.com>",
"description": "Grasp query backend using css style selectors",
"homepage": "http://graspjs.com/docs/squery",
"keywords": [
"grasp",
"query",
"squery",
"ast",
"selectors",
"javascript",
"css",
"search"
],
"files": [
"lib",
"README.md",
"LICENSE"
],
"main": "./lib/",
"bugs": "https://github.com/gkz/grasp-squery/issues",
"license": "BSD-3-Clause",
"engines": {
"node": ">= 0.8.0"
},
"repository": {
"type": "git",
"url": "git://github.com/gkz/grasp-squery.git"
},
"scripts": {
"test": "make test"
},
"dependencies": {
"prelude-ls": "~1.1.2",
"grasp-syntax-javascript": "~0.2.0"
},
"devDependencies": {
"livescript": "~1.4.0",
"mocha": "~2.1.0",
"istanbul": "~0.1.43",
"flow-parser": "^0.*"
}
}