-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.03 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.03 KB
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
{
"name": "qo-sql",
"description": "qo-sql (Query Object with Sql) can be a babel plugin to query object in template literals with sql syntax or as lib",
"keywords": "sql query object babel plugin template literals lodash underscore",
"version": "0.0.5",
"scripts": {
"test": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec",
"build": "node ./src/parser/build.js"
},
"devDependencies": {
"codecov": "^1.0.1",
"istanbul": "^0.4.4",
"mocha": "*",
"underscore": "^1.8.3",
"jison": "^0.4.17"
},
"repository": {
"type": "git",
"url": "https://github.com/timtian/qo-sql.git"
},
"main": "src/index.js",
"dependencies": {
"babel-core": "^6.13.2",
"babel-plugin-syntax-object-rest-spread": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.13.2",
"babel-template": "^6.9.0",
"babel-types": "^6.8.1",
"babylon": "^6.8.0",
"js-beautify": "^1.6.3",
"lodash": "^4.13.1"
},
"license": "MIT"
}