-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 740 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 740 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
{
"name": "jl-sql-api",
"description": "SQL stream manipulating for JS",
"version": "2.8.1",
"keywords": [
"sql",
"stream"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/avz/node-jl-sql-api.git"
},
"main": "main.js",
"author": "avz@nologin.ru",
"contributors": [],
"dependencies": {},
"devDependencies": {
"eslint": "^3.10.2",
"eslint-plugin-mocha": "^4.7.0",
"istanbul": "^0.4.5",
"jison": "^0.4.17",
"mocha": "^3.1.2"
},
"scripts": {
"test": "eslint . && mocha --recursive",
"coverage": "istanbul cover --report html _mocha -- --recursive"
},
"engines": {
"node": ">=6"
},
"tonicExampleFilename": "./examples/join.js"
}