-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.42 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.42 KB
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
{
"name": "katabase",
"dependencies": {
"readline-sync": "^1.4.10"
},
"devDependencies": {
"@types/readline-sync": "^1.4.4",
"@types/node": "^14.11.1",
"@types/jest": "^27.0.1",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"babel-jest": "^27.2.0",
"jest": "^27.2.0",
"jest-junit": "^12.2.0",
"jest-junit-reporter": "^1.1.0",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"typescript": "^4.4.3",
"nodemon": "^2.0.12",
"ts-node": "^10.2.1",
"tsc": "^2.0.3",
"npm": "^7.23.0"
},
"version": "1.0.0",
"main": "build/classes/scripts/application.js",
"scripts": {
"start": "ts-node src/main/scripts/application.ts",
"start-watch": "nodemon --watch 'src/main/scripts/**/*.ts' --exec ts-node src/main/scripts/application.ts Spiderman",
"build": "tsc -p .",
"test": "jest",
"test-watch": "jest --watch",
"refresh": "rm -rf ./node_modules ./package-lock.json yarn.lock build && npm install"
},
"bin": {
"katabase": "build/classes/scripts/application.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marmer/katabase.git"
},
"keywords": [
"kata"
],
"author": "marmer",
"license": "MIT",
"bugs": {
"url": "https://github.com/marmer/katabase/issues"
},
"homepage": "https://github.com/marmer/katabase#readme",
"description": "kata base"
}