-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 2.49 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@tokilabs/lang",
"version": "1.0.7",
"description": "Extends TypeScript/Javascript with basic classes and functions",
"main": "lib/cjs/index.js",
"module": "lib/mjs/index.js",
"type": "module",
"exports": {
".": {
"import": {
"types": "./lib/mjs/index.d.ts",
"default": "./lib/mjs/index.js"
},
"require": {
"types": "./lib/cjs/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"scripts": {
"clean": "rimraf ./lib",
"docs": "yarn docs:html",
"docs:html": "typedoc src/index.ts --theme minimal --out docs",
"docs:json": "typedoc --json docs/typedoc.json src/index.ts",
"docs:publish": "yarn docs:html && gh-pages -d docs",
"lint": "eslint src/**/*.ts",
"test": "yarn node --experimental-vm-modules $(yarn bin jest)",
"test:watch": "jest --watch",
"cover": "jest --coverage",
"tsc": "tsc",
"build": "yarn clean && yarn lint && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./fixup"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/tokilabs/lang.git"
},
"keywords": [
"helpers",
"FQN",
"serialization",
"uuid",
"guid",
"util",
"server",
"client",
"browser",
"decorators",
"typescript",
"functional"
],
"author": "Saulo Vallory <[email protected]>",
"contributors": [
{
"name": "Yago Fernandes",
"email": "[email protected]"
},
{
"name": "Alberto Nunes",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tokilabs/lang/issues"
},
"homepage": "https://github.com/tokilabs/lang#README",
"dependencies": {
"class-transformer": "0.5.1",
"nanoid": "3.0.1",
"prettier-eslint": "^15.0.1",
"reflect-metadata": "^0.1.13",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "18.13.0",
"@types/rimraf": "^3.0.2",
"@types/source-map-support": "^0.5.6",
"@types/uuid": "9.0.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"gh-pages": "^5.0.0",
"jest": "^29.4.0",
"prettier": "^2.8.4",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.21",
"ts-jest": "^29.0.5",
"ts-jest-resolver": "^2.0.0",
"ts-node": "^10.9.1",
"ts-package-lint": "^0.2.2",
"tsconfig-paths": "^4.1.2",
"tslib": "^2.5.0",
"typedoc": "^0.23.25",
"typescript": "^4.9.5"
},
"packageManager": "[email protected]"
}