forked from honeinc/uniql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 799 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 799 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
{
"name": "uniql",
"version": "1.0.1",
"description": "Produces ASTs from UniQL queries.",
"main": "src/parser.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git://github.com/andyburke/uniql.git"
},
"keywords": [
"query",
"ast",
"dsl"
],
"author": "Andy Burke <andy.burke@mailbox.earth>",
"contributors": [
{
"name": "Abraham Haskins",
"email": "abe@rigidflame.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/andyburke/uniql/issues"
},
"devDependencies": {
"eslint": "^5.16.0",
"jest": "^24.7.1"
},
"dependencies": {
"jison": "^0.4.18"
},
"jest": {
"testMatch": [
"**/tests/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)"
]
}
}