-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.08 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
{
"name": "protoobject",
"version": "1.1.2",
"description": "A universal class for creating any JSON objects and simple manipulations with them.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test:ts": "node --import=tsx --test test/ts/*.test.ts",
"test:js": "node --test test/js/*.test.js",
"test:sql": "node --experimental-sqlite --import=tsx --test test/sql/*.test.ts",
"cov": "./node_modules/.bin/nyc npm run test:ts",
"lint": "./node_modules/.bin/eslint src/**/*.ts",
"prebuild": "npm run lint",
"build": "rm -rf lib && ./node_modules/.bin/tsc --declaration",
"update": "eval \"$(node -e 'const t = require(`./package.json`);const ignore = require(`./ignoreUpdatesModules.json`);console.log(`npm i ${(Object.keys(t.dependencies || {}).filter((e)=>ignore.base.indexOf(e) === -1).map((e)=>(`${e}@latest`)).join(` `))} --save&&npm i ${(Object.keys(t.devDependencies || {}).filter((e)=>ignore.dev.indexOf(e) === -1).map((e)=>(`${e}@latest`)).join(` `))} --save-dev`);')\""
},
"author": {
"name": "Siarhei Dudko",
"email": "[email protected]",
"url": "https://dudko.dev/"
},
"funding": [
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/dudko.dev"
},
{
"type": "paypal",
"url": "https://paypal.me/dudkodev"
},
{
"type": "patreon",
"url": "https://patreon.com/dudko_dev"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "github:dudko-dev/protoobject"
},
"keywords": [
"protoobject",
"json",
"jsonstream",
"object",
"class",
"converter",
"transformer",
"base-class",
"class-converter",
"class-transformer"
],
"homepage": "https://github.com/dudko-dev/protoobject",
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/node": "^22.4.1",
"eslint": "^9.15.0",
"nyc": "^17.1.0",
"prettier": "^3.3.3",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0"
},
"engines": {},
"directorie": {
"man": "./docs/",
"test": "./test/"
}
}