-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.04 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
{
"name": "@elanthia/koschei",
"version": "2.2.5",
"description": "A bridge between the Lich-runtime and a Node.js runtime",
"main": "dist/index.js",
"private": false,
"scripts": {
"test": "npx jest",
"build": "npx tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elanthia-online/koschei.git"
},
"author": "Benjamin Clos",
"license": "ISC",
"bugs": {
"url": "https://github.com/elanthia-online/koschei/issues"
},
"homepage": "https://github.com/elanthia-online/koschei#readme",
"devDependencies": {
"@types/jest": "^23.3.7",
"@types/node": "^10.12.0",
"jest": "^23.6.0",
"ts-jest": "^23.10.4",
"ts-node": "^7.0.1",
"typescript": "^3.5.2"
},
"dependencies": {
"@types/debug": "^4.1.4",
"debug": "^4.1.1",
"saxes": "^3.1.3"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"testRegex": "/test/.*\\.(ts|tsx|js)$"
}
}