-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 3.11 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
{
"name": "@squill/sqlite3-browser",
"version": "0.0.6",
"description": "A SQLite3 query-builder/ORM",
"main": "dist/driver/index.js",
"types": "dist/driver/index.d.ts",
"files": [
"dist/driver",
"dist/sql-wasm",
"dist/worker",
"src"
],
"scripts": {
"test": "ts-node -P ./test/run-time/tsconfig.json -r ./test/run-time/tape-stream.ts -r ./test/run-time/bluebird-promise.ts",
"test-bigint-polyfill": "ts-node -P ./test/run-time/tsconfig.json -r ./test/run-time/tape-stream.ts -r ./test/run-time/bigint-polyfill.ts -r ./test/run-time/bluebird-promise.ts",
"clean": "rm -r ./dist || true",
"build-worker-browser": "./build-worker-browser.sh",
"build-worker-node": "./build-worker-node.sh",
"build-worker-node-force-bigint-polyfill": "./build-worker-node-force-bigint-polyfill.sh",
"build-sql-wasm": "./build-sql-wasm.sh",
"build-ts": "./build-ts.sh",
"build": "./build.sh",
"rebuild": "(npm run clean) && (npm run build)",
"test-run-time": "node --max_old_space_size=8192 ./node_modules/.bin/ts-node -P ./test/run-time/tsconfig.json -r ./test/run-time/tape-stream.ts -r ./test/run-time/bluebird-promise.ts ./test/run-time/runner.ts",
"test-run-time-bigint-polyfill": "node --max_old_space_size=8192 ./node_modules/.bin/ts-node -P ./test/run-time/tsconfig.json -r ./test/run-time/tape-stream.ts -r ./test/run-time/bigint-polyfill.ts -r ./test/run-time/bluebird-promise.ts ./test/run-time/runner.ts",
"sanity-check": "(npm run rebuild) && (c8 --reporter=html npm run test-run-time) && (npm run test-run-time-bigint-polyfill)",
"sanity-check-travis": "(npm run rebuild) && (c8 --reporter=html npm run test-run-time) && (npm run test-run-time-bigint-polyfill)",
"build-test-browser": "./build-test-browser.sh",
"start-test-browser": "ts-node -P ./test-browser/tsconfig.json ./test-browser/server.ts",
"build-test-playground": "./build-test-playground.sh",
"start-test-playground": "ts-node -P ./test-playground/tsconfig.json ./test-playground/server.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/AnyhowStep/tsql-sqlite3-browser"
},
"author": "anyhowstep",
"license": "MIT",
"bugs": {
"url": "https://github.com/AnyhowStep/tsql-sqlite3-browser/issues"
},
"homepage": "https://github.com/AnyhowStep/tsql-sqlite3-browser#readme",
"devDependencies": {
"@types/bluebird": "^3.5.30",
"@types/express": "^4.17.3",
"@types/node": "^13.9.0",
"@types/tape": "^4.2.34",
"@types/webpack": "^4.41.7",
"acorn": "^6.4.1",
"bluebird": "^3.7.2",
"c8": "^7.1.0",
"css-loader": "^3.4.2",
"express": "^4.17.1",
"file-loader": "^5.1.0",
"html-webpack-plugin": "^3.2.0",
"monaco-editor": "^0.19.0",
"raw-loader": "^4.0.0",
"source-map-loader": "^0.2.4",
"style-loader": "^1.1.3",
"tape": "^4.11.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.5.1",
"url-loader": "^3.0.0",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"@squill/squill": "0.0.8",
"type-mapping": "^1.32.0"
}
}