-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "freshlog",
"version": "0.3.0",
"description": "simple node logging framework",
"main": "build/index.js",
"types": "declarations/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "node scripts/clean.js",
"docs": "typedoc --out docs/ src/",
"test": "jest",
"preversion": "yarn build && yarn test",
"postversion": "git push --tags"
},
"author": {
"name": "Elliot Hatch",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/json-stringify-safe": "^5.0.0",
"fs-extra": "^11.1.1",
"gulp": "^4.0.2",
"jest": "^29.6.4",
"ts-jest": "^29.1.1",
"typedoc": "^0.24.8",
"typescript": "^5.2.2"
},
"dependencies": {
"json-stringify-safe": "^5.0.1",
"rxjs": "^6.5.1"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.(tsx?|ts?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}