-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.7 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.7 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
{
"name": "bitclock-backend",
"version": "1.1.5",
"description": "A BitClock backend written in TypeScript.",
"author": "Eric Slenk <lucid.machine@gmail.com>",
"license": "MIT",
"keywords": [
"bitclock",
"binary",
"clock"
],
"repository": "https://github.com/lucidmachine/bitclock-backend-ts",
"homepage": "https://github.com/lucidmachine/bitclock-backend-ts#readme",
"bugs": "https://github.com/lucidmachine/bitclock-backend-ts/issues",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"scripts": {
"clean": "for d in build test; do if [ -d \"$d\" ]; then rm -r $d; fi; done",
"build:main": "tsc --project tsconfig.json",
"build:module": "tsc --project tsconfig.module.json",
"build": "npm run clean && npm run build:main && npm run build:module",
"fix": "prettier \"src/**/*.ts\" --write",
"test:unit": "jest",
"test": "npm run build && npm run test:unit",
"watch": "npm run clean && tsc --project tsconfig.json --watch & jest --watch & wait",
"cov:build": "jest --coverage",
"cov": "npm run build && npm run cov:build && firefox build/coverage/index.html",
"reset": "git clean -dfx && git reset --hard && npm i",
"all": "npm run reset test"
},
"engines": {
"node": ">=10.15.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.1",
"@types/node": "^11.15.18",
"babel-jest": "^27.2.0",
"jest": "^27.2.0",
"jest-date-mock": "^1.0.8",
"prettier": "^2.4.0",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"prettier": {
"singleQuote": true
}
}