-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.15 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
{
"name": "ts-weka-node",
"version": "0.0.55",
"description": "Weka helper package for node servers",
"scripts": {
"build": "tsc",
"test": "jest",
"prepare": "npm run build",
"publish_to_npm": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SophiaLi1/ts-weka-node.git"
},
"keywords": [
"weka"
],
"author": "SophiaLi1",
"license": "ISC",
"bugs": {
"url": "https://github.com/SophiaLi1/ts-weka-node/issues"
},
"homepage": "https://github.com/SophiaLi1/ts-weka-node#readme",
"dependencies": {
"@types/fs-extra": "^8.1.0",
"fs-extra": "^9.0.0"
},
"devDependencies": {
"@types/color-name": "^1.1.1",
"@types/jest": "^25.2.1",
"@types/node": "^13.11.1",
"@types/yargs": "^15.0.4",
"jest": "^25.3.0",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
},
"files": [
"lib/**/*"
],
"jest": {
"roots": [
"src"
],
"verbose": true,
"setupFilesAfterEnv": [
"./jest.setup.js"
],
"testMatch": [
"**/__tests__/**/*.+(ts|tsx|js)",
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"preset": "ts-jest"
}
}