-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
69 lines (69 loc) · 1.93 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
{
"name": "sqlite-wasm",
"version": "0.0.2",
"description": "Run SQLite on the web, using WebAssembly",
"repository": "https://github.com/kbumsik/sqlite-wasm",
"author": "Bumsik Kim <[email protected]>",
"license": "MIT",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"build": "make build-dist",
"build:dev": "make build-debug",
"build:ts": "tsc",
"build:ts-test": "tsc --build tsconfig.test.json",
"watch": "tsc -w",
"clean": "make clean",
"deploy": "make build-dist",
"lint": "eslint --ext .js,.ts,.tsx ./src",
"test": "yarn build:ts-test && jest --no-cache",
"test:watch": "jest --no-cache --watch --no-watchman"
},
"files": [
"dist/",
"lib/"
],
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/runtime-corejs3": "^7.9.2",
"@types/emscripten": "^1.39.3",
"@types/jest": "^25.1.3",
"@types/sinon": "^7.5.2",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.12.0",
"babel-loader": "^8.1.0",
"core-js": "^3.6.5",
"eslint": "^6.8.0",
"eslint-config-standard-with-typescript": "^12.0.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsdoc": "^21.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "24.9.0",
"prettier": "^1.19.1",
"sinon": "^8.1.0",
"typescript": "^3.8.0-beta",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1",
"wrapper-webpack-plugin": "^2.1.0"
},
"private": false,
"keywords": [
"blogsearch",
"webassembly",
"sqlite",
"sqlite3",
"sql",
"database",
"RDBMS",
"emscripten",
"typescript"
]
}