-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.35 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
{
"name": "quelaag",
"version": "1.0.2",
"description": "A web request handling framework that plays nicely with TypeScript",
"keywords": [
"web",
"framework",
"typescript"
],
"license": "GPL-3.0-only",
"author": "Thomas Richards",
"homepage": "https://github.com/Deskbot/Quelaag",
"bugs": "https://github.com/Deskbot/Quelaag/issues",
"repository": "https://github.com/Deskbot/Quelaag",
"main": "./build/index.js",
"types": "./build",
"engines": {
"node": ">= 10"
},
"files": [
"bin",
"build/**/*.js",
"build/**/*.d.ts",
"README.md"
],
"scripts": {
"postinstall": "./bin/post-install.js",
"build": "./node_modules/.bin/tsc --incremental",
"build-prod": "./node_modules/.bin/tsc -p prod.tsconfig.json",
"build-watch": "./node_modules/.bin/tsc -w --incremental",
"build-test": "./node_modules/.bin/tsc --incremental -p ./test",
"build-test-watch": "./node_modules/.bin/tsc -w --incremental -p ./test",
"clean": "rm -rf build/* build-test/*",
"prepublishOnly": "npm run clean && npm run build-prod && npm run build-test && npm run test",
"test": "node --trace-warnings --unhandled-rejections=strict -r source-map-support/register ./build-test/test/src/main"
},
"devDependencies": {
"@types/node": "^10.17.16",
"source-map-support": "^0.5.16",
"typescript": "^4.2.3"
}
}