-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 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
{
"name": "tzientist",
"version": "3.2.0",
"description": "Scientist-like library for Node.js in TypeScript",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"test": "jest",
"cover": "jest --coverage --coverageProvider=v8",
"lint": "eslint \"src/**/*.ts\"",
"prepare": "npm run build",
"build": "tsc -p tsconfig.build.json"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TrueWill/tzientist.git"
},
"author": "William E. Sorensen",
"license": "MIT",
"keywords": [
"scientist",
"refactoring",
"typescript",
"nodejs"
],
"bugs": {
"url": "https://github.com/TrueWill/tzientist/issues"
},
"homepage": "https://github.com/TrueWill/tzientist#tzientist",
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^20.7.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.15.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.7.0",
"prettier": "3.0.3",
"ts-jest": "^29.1.1",
"typescript": "5.2.2"
}
}