-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 3.18 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
{
"name": "@squill/squill",
"version": "0.0.8",
"description": "A SQL query-builder/ORM",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"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",
"build-custom-eslint-rules": "tsc -p ./custom-typescript-eslint-rules/tsconfig.json",
"lint": "eslint --ext .ts",
"lint-all": "npm run lint -- ./src",
"clean": "rm -r ./dist || true",
"build": "tsc",
"rebuild": "(npm run clean) && (npm run build)",
"test-compile-time": "ts-node -P ./test/compile-time/tsconfig.json ./test/compile-time/runner.ts",
"test-compile-time-travis": "ts-node -P ./test/compile-time/tsconfig.json ./test/compile-time/runner-travis.ts",
"test-compile-time-one": "ts-node -P ./test/compile-time/tsconfig.json ./test/compile-time/test-one.ts",
"accept-compile-time": "ts-node -P ./test/compile-time/tsconfig.json ./test/compile-time/accept-actual.ts",
"accept-one": "ts-node -P ./test/compile-time/tsconfig.json ./test/compile-time/accept-one.ts",
"test-compile-time-interactive": "ts-node -P ./test/compile-time/tsconfig.json ./test/compile-time/interactive.ts",
"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) && (npm run test-compile-time)",
"sanity-check-travis": "(npm run rebuild) && (npm run test-compile-time-travis) && (c8 --reporter=json npm run test-run-time) && (npm run test-run-time-bigint-polyfill)",
"c8-report": "(c8 --reporter=html npm run test-run-time)",
"count-loc": "find ./src -name '*.ts' | xargs wc -l"
},
"author": "anyhowstep",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AnyhowStep/tsql"
},
"bugs": {
"url": "https://github.com/AnyhowStep/tsql/issues"
},
"homepage": "https://github.com/AnyhowStep/tsql#readme",
"devDependencies": {
"@anyhowstep/typed-env": "^2.1.0",
"@types/bluebird": "^3.5.27",
"@types/diff": "^4.0.2",
"@types/node": "^12.6.2",
"@types/tape": "^4.2.33",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"bluebird": "^3.5.5",
"c8": "^5.0.4",
"diff": "^4.0.1",
"eslint": "^6.8.0",
"eslint-utils": "^1.4.1",
"handlebars": "^4.5.3",
"sql.js": "^1.0.0",
"tape": "^4.11.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.1"
},
"dependencies": {
"type-mapping": "^1.32.0"
}
}