-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.39 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
{
"name": "@qiwi/primitive-storage",
"version": "2.0.1",
"description": "Primitive storage for basic purposes",
"publishConfig": {
"access": "public"
},
"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"
}
},
"types": "./target/dts/index.d.ts",
"typescript": {
"definition": "./target/dts/index.d.ts"
},
"files": [
"target/cjs",
"target/esm",
"target/dts",
"flow-typed",
"buildstamp.json"
],
"dependencies": {
"@antongolub/r": "0.0.1",
"@qiwi/substrate": "^2.0.4",
"push-it-to-the-limit": "^2.0.1"
},
"devDependencies": {
"abstractest": "^0.1.6",
"@abstractest/native": "^0.4.0",
"@abstractest/localstorage": "^0.0.1",
"eslint-config-prettier": "^9.0.0",
"prettier-config-qiwi": "^2.1.2",
"@types/node": "^20.4.1",
"concurrently": "^8.2.0",
"esbuild": "^0.18.11",
"esbuild-node-externals": "^1.8.0",
"eslint": "^8.44.0",
"eslint-config-qiwi": "^2.1.3",
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
},
"scripts": {
"clean": "rm -rf target buildcache buildstamp.json",
"build": "concurrently 'npm:build:*'",
"build:stamp": "npm_config_yes=true npx buildstamp",
"build:esm": "node ./src/scripts/build.cjs",
"build:cjs": "node ./src/scripts/build.cjs --cjs",
"build:dts": "tsc --emitDeclarationOnly --skipLibCheck --outDir target/dts",
"build:docs": "typedoc --options src/main/typedoc",
"test": "concurrently 'npm:test:*'",
"test:lint": "eslint -c src/test/lint/.eslintrc.json src",
"test:depcheck": "npm_config_yes=true npx depcheck --ignores @types/node,typedoc,@abstractest/*,esbuild*,eslint*",
"test:unit": "abstractest --runner=native src/test/ts/storage/**/*.test.*",
"format": "prettier --write \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "[email protected]:qiwi/primitive-storage.git"
},
"keywords": [
"cache",
"storage",
"persistent storage",
"in-memory storage"
],
"author": "Anton Golub <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/qiwi/primitive-storage/issues"
},
"homepage": "https://github.com/qiwi/primitive-storage#readme",
"prettier": "prettier-config-qiwi"
}