-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.17 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.17 KB
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
{
"name": "@qiwi/deep-proxy",
"version": "3.0.0",
"description": "Deep proxy implementation for TypeScript",
"type": "module",
"main": "target/cjs/index.cjs",
"exports": {
".": {
"types": "./target/dts/index.d.ts",
"require": "./target/cjs/index.cjs",
"import": "./target/esm/index.mjs",
"default": "./target/esm/index.mjs"
}
},
"module": "target/esm/index.mjs",
"types": "target/dts/index.d.ts",
"files": [
"README.md",
"CHANGELOG.md",
"target/cjs",
"target/esm",
"target/dts",
"flow-typed"
],
"scripts": {
"format": "yarn lint --fix && prettier --write \"src/**/*.ts\"",
"test": "concurrently 'npm:test:*'",
"test:lint": "eslint 'src/**/*.+(js|ts)'",
"test:unit": "NODE_OPTIONS=--experimental-vm-modules jest --config=jest.config.json --runInBand",
"clean": "rimraf target typings flow-typed buildcache",
"build": "concurrently 'npm:build:*'",
"build:esm": "node ./src/scripts/build.cjs",
"build:cjs": "node ./src/scripts/build.cjs --cjs",
"build:dts": "tsc --emitDeclarationOnly --declaration --outDir target/dts",
"build:flow": "libdefkit --tsconfig=tsconfig.json --dtsOut=false",
"build:docs": "typedoc",
"build:stamp": "npm_config_yes=true npx buildstamp",
"postupdate": "yarn && npm_config_yes=true npx yarn-audit-fix --audit-level=moderate && yarn build && yarn test"
},
"repository": {
"type": "git",
"url": "https://github.com/qiwi/deep-proxy.git"
},
"keywords": [
"proxy",
"deep",
"nested",
"chained",
"deep-proxy",
"nested-proxy"
],
"author": "Anton Golub <a.golub@qiwi.com>",
"license": "MIT",
"devDependencies": {
"@qiwi/libdefkit": "^6.1.4",
"@qiwi/substrate": "^2.1.0",
"@types/jest": "^29.5.12",
"@types/node": "^24.0.0",
"concurrently": "^9.0.0",
"esbuild": "^0.28.0",
"esbuild-node-externals": "^1.13.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.0.0",
"eslint-config-qiwi": "^2.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typedoc": "^0.28.0",
"typescript": "5.9.3"
}
}