forked from JavaScriptor/js-sql-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 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
{
"name": "@lincworld/js-sql-parser",
"version": "1.2.0",
"description": "",
"main": "./dist/parser/sqlParser.js",
"scripts": {
"build": "jison -m js ./src/sqlParser.jison -o ./dist/parser/sqlParser.js && npm run build-concat",
"build-concat": "cat src/stringify.js src/suffix.js >> ./dist/parser/sqlParser.js",
"postbuild": "npm run test:build",
"test": "npm run build",
"test:all": "mocha --require babel-register",
"test:build": "mocha --require babel-register 'test/*.test.js'",
"test:benchmark": "mocha --require babel-register test/benchmark.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LincWorld/js-sql-parser.git"
},
"keywords": [
"js",
"sql-parser"
],
"author": "albin zeng",
"license": "ISC",
"bugs": {
"url": "https://github.com/LincWorld/js-sql-parser/issues"
},
"homepage": "https://github.com/LincWorld/js-sql-parser#readme",
"devDependencies": {
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.22.0",
"benchmark": "^2.1.3",
"concat": "^1.0.3",
"debug": "^3.1.0",
"jison": "^0.4.17",
"mocha": "^3.2.0"
}
}