-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 868 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
{
"name": "oq-mapper",
"version": "0.3.0",
"description": "Object/Query mapper for Node.js.",
"main": "dist/oq-mapper-parser.js",
"bin": "bin/cli.js",
"files": [
"dist/oq-mapper-parser.js",
"bin/cli.js"
],
"types": "types/oq-mapper.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "pegjs -o dist/oq-mapper-parser.js src/oq-mapper.pegjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/katsew/oq-mapper.git"
},
"keywords": [
"sql",
"sql-parser",
"parser",
"pegjs",
"javascript",
"json"
],
"author": "katsew",
"license": "MIT",
"bugs": {
"url": "https://github.com/katsew/oq-mapper/issues"
},
"homepage": "https://github.com/katsew/oq-mapper#readme",
"dependencies": {
"commander": "^2.11.0"
},
"devDependencies": {
"pegjs": "^0.10.0"
}
}