-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.09 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
{
"name": "looper",
"version": "0.2.0",
"description": "A script that performs an action periodically",
"main": "dist/lib/main.js",
"types": "dist/lib/main.d.ts",
"scripts": {
"start": "webpack --progress && node ./dist/example/index.js",
"test": "jest",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"example/**/*.ts\"",
"build": "npm run format && tsc"
},
"author": "Coherent Global Inc <fieldengineering@coherent.global>",
"devDependencies": {
"@types/jest": "29.5.4",
"@types/node": "~20.5",
"jest": "29.6.4",
"prettier": "2.6.0",
"ts-jest": "29.1.0",
"ts-loader": "9.4.4",
"tsconfig-paths-webpack-plugin": "4.1.0",
"typescript": "4.8.4",
"webpack": "^5.95.0",
"webpack-cli": "5.1.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "test",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}