forked from AlaSQL/alasql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.58 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "alasql",
"description": "Versatile SQL database for browser or node. Handles relational data and nested JSON (noSQL). Export to and import from Excel, localStorage or IndexedDB",
"version": "0.2.6",
"author": "Andrey Gershun <[email protected]>",
"contributors": [
{
"name": "Mathias Rangel Wulff",
"email": "[email protected]"
}
],
"directories": {
"test": "test"
},
"scripts": {
"test": "gulp && cd test && mocha . --reporter dot",
"test:this": "gulp && cd test && mocha",
"test:only": "cd test && mocha . --reporter dot",
"test:browser": "node test/browserTestRunner.js 7387",
"build": "gulp",
"build:jison": "gulp --jison && gulp",
"build:watch": "gulp watch",
"bump": "mversion --no-prefix",
"uptodate": "npm-check && npm-check -u",
"release": "f='/TMP/alasql.tmp' && curl https://raw.githubusercontent.com/wiki/agershun/alasql/how-to-release.md > $f && sh $f ; rm $f",
"jison": "jison ./src/alasqlparser.jison -o ./src/alasqlparser.js"
},
"dependencies": {
"dom-storage": "^2.0.1",
"es6-promise": "^3.1.2",
"lodash": "^4.6.1",
"request": "^2.69.0",
"xlsjs": "^0.7.5",
"yargs": "^4.2.0",
"xlsx": "^0.8.0"
},
"devDependencies": {
"blueimp-md5": "^2.3.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-dereserve": "^0.2.1",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-shell": "^0.5.2",
"gulp-uglify": "^1.5.3",
"jison": "^0.4.17",
"mocha": "^2.4.5",
"mversion": "^1.10.0",
"npm-check": "^4.0.1",
"open": "0.0.5",
"strftime": "^0.9.2",
"uglifyjs": "^2.4.10"
},
"engines": [
"node"
],
"repository": {
"type": "git",
"url": "http://github.com/agershun/alasql.git"
},
"bugs": {
"url": "https://github.com/agershun/alasql/issues"
},
"bin": {
"alasql": "./bin/alasql-cli.js",
"alaserver": "./bin/alaserver.js"
},
"homepage": "https://github.com/agershun/alasql",
"main": "dist/alasql.js",
"keywords": [
"sql",
"nosql",
"graph",
"alasql",
"javascript",
"parser",
"database",
"DBMS",
"data",
"query",
"localStorage",
"IndexedDB",
"DOM-storage",
"SQLite",
"JSON",
"Excel",
"XLSX",
"XLS",
"CSV",
"worker"
],
"license": "MIT",
"preferGlobal": true,
"testling": {
"browsers": [
"ie/6..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/4..latest",
"ipad/4..latest",
"android-browser/4..latest"
]
}
}