-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.27 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
{
"name": "@badgateway/tt-types",
"version": "0.10.2",
"description": "Types and schemas for the time tracking application",
"main": "dist/index.js",
"scripts": {
"test": "npx tsc --noEmit",
"prepublishOnly": "npm run build",
"build": "json2ts -i schema/ -o src/; mkdir -p dist/; cp src/*.d.ts dist/; tsc",
"start": "node dist/index.js",
"start:watch": "npx tsc-watch --onSuccess 'node dist/index.js'",
"watch": "tsc --watch",
"lint": "eslint --quiet 'src/*.ts'",
"fix": "eslint --quiet 'src/**/*.ts' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/badgateway/tt-types.git"
},
"keywords": [
"time",
"tracking",
"node",
"typescript",
"json-schema"
],
"author": "Evert Pot",
"license": "MIT",
"bugs": {
"url": "https://github.com/badgateway/tt-types/issues"
},
"files": [
"schema/",
"dist/",
"src/"
],
"homepage": "https://github.com/badgateway/tt-types#readme",
"devDependencies": {
"@types/node": "^16.11.17",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.6.0",
"json-schema-to-typescript": "^10.1.5",
"ts-node": "^10.4.0",
"tsc-watch": "^4.6.0",
"typescript": "^4.5.4"
}
}