-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.75 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.75 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "fish-timer",
"version": "1.0.0",
"description": "Update the times for the aquarium lights (HeliaLux Spectrum) to the dusk & dawn times",
"main": "dist/src/main.js",
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"test-ci": "jest --collect-coverage=true",
"clean": "rimraf ./dist",
"transpile": "tsc",
"build": "npm run clean && npm run transpile",
"start": "node dist/src/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jertje260/fish-timer.git"
},
"author": "Jeroen Broekhuizen",
"license": "ISC",
"jest": {
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"collectCoverage": false,
"preset": "ts-jest",
"testMatch": [
"**/?(*.)+(spec|test).ts?(x)"
],
"coverageDirectory": "coverage/",
"collectCoverageFrom": [
"src/**/*.{ts,js}",
"!src/**/*.d.ts"
],
"coverageReporters": [
"text",
"cobertura"
],
"reporters": [
"default",
"jest-junit"
]
},
"bugs": {
"url": "https://github.com/jertje260/fish-timer/issues"
},
"homepage": "https://github.com/jertje260/fish-timer#readme",
"dependencies": {
"request": "^2.88.0",
"request-promise": "^4.2.4"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node": "^12.7.3",
"@types/request-promise": "^4.1.44",
"jest": "^24.9.0",
"jest-junit": "^8.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^24.0.2",
"typescript": "^3.7.5"
}
}