forked from sql-js/sql.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "sql.js",
"version": "1.0.0",
"description": "SQLite library with support for opening and writing databases, prepared statements, and more. This SQLite library is in pure javascript (compiled with emscripten).",
"keywords": [
"sql",
"sqlite",
"stand-alone",
"relational",
"database",
"RDBMS",
"data",
"query",
"statement",
"emscripten",
"asm",
"asm.js"
],
"license": "MIT",
"main": "./dist/sql-wasm.js",
"scripts": {
"build": "make",
"rebuild": "make clean && make",
"test": "npm run test-asm && npm run test-asm-debug && npm run test-wasm && npm run test-wasm-debug && npm run test-asm-memory-growth",
"test-asm": "node test/all.js asm",
"test-asm-debug": "node test/all.js asm-debug",
"test-asm-memory-growth": "node test/all.js asm-memory-growth",
"test-wasm": "node test/all.js wasm",
"test-wasm-debug": "node test/all.js wasm-debug"
},
"homepage": "http://github.com/kripken/sql.js",
"repository": {
"type": "git",
"url": "http://github.com/kripken/sql.js.git"
},
"bugs": {
"url": "https://github.com/kripken/sql.js/issues",
"email": "[email protected]"
},
"devDependencies": {
"test": ">=0.6",
"tiny-worker": "^2.1.2"
},
"dependencies": {}
}