-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.25 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
{
"name": "keyv-arango",
"version": "1.4.0",
"description": "ArangoDB adapter for Keyv, the simple persistent key-value storage module.",
"author": "Tim Mikeladze <tim.mikeladze@gmail.com>",
"keywords": [
"arango",
"arangodb",
"key-value",
"keyv",
"persistence",
"storage",
"cache"
],
"repository": {
"type": "git",
"url": "https://github.com/TimMikeladze/keyv-arango.git"
},
"license": "MIT",
"files": [
"./dist"
],
"source": "src/index.ts",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"scripts": {
"dev": "microbundle watch src/index.ts --target node -f modern",
"build": "rm -rf dist && tsc && microbundle src/index.ts --target node",
"lint": "eslint --fix {src,__tests__}/**/* && prettier --write .",
"test": "yarn build -f cjs && ava",
"prepublishOnly": "yarn lint && yarn test && yarn build",
"release": "release-it",
"commit": "yarn commit-it"
},
"release-it": {
"git": {
"commitMessage": "🔖 | v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
}
},
"lint-staged": {
"*.ts": "eslint --fix",
"*": "prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@keyv/test-suite": "1.9.1",
"@types/node": "18.15.3",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"arangojs": "8.1.0",
"ava": "5.2.0",
"commit-it": "0.0.11",
"eslint": "8.36.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-n": "15.6.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-typescript-sort-keys": "2.3.0",
"husky": "8.0.3",
"keyv": "4.5.2",
"lint-staged": "13.2.0",
"microbundle": "0.15.1",
"prettier": "2.8.4",
"release-it": "15.9.0",
"typescript": "4.9.5"
},
"peerDependencies": {
"arangojs": ">=7.0.0",
"keyv": ">=4.0.0"
},
"resolutions": {
"json5": ">=2.2.2"
}
}