-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.34 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@kakasoo/proto-typescript",
"version": "1.28.7",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"description": "Utility types and implementations based on JavaScript prototypes.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"prepublishOnly": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"deploy": "npm publish"
},
"keywords": [
"type-safe",
"prototype",
"utility-types",
"iterable/iterator",
"ES6"
],
"author": "kakasoo",
"license": "ISC",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"ts-patch": "^3.1.1",
"typescript": "^5.3.2",
"typia": "^5.3.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"rootDir": ".",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "./coverage",
"testEnvironment": "node"
}
}