-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
68 lines (68 loc) · 1.81 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
{
"name": "@adobe/aio-lib-state",
"version": "5.1.0",
"description": "An Abstraction on top of Key Value Stores",
"main": "index.js",
"directories": {
"lib": "lib"
},
"types": "types.d.ts",
"scripts": {
"lint": "eslint index.js lib test e2e",
"beautify": "npm run lint -- --fix",
"test": "npm run unit && npm run lint",
"unit": "jest -c jest.config.js",
"e2e": "jest -c jest.e2e.config.js",
"jsdoc": "jsdoc2md -f index.js 'lib/**/*.js' > doc/api.md",
"typings": "jsdoc -t node_modules/tsd-jsdoc/dist -r lib -d . && replace-in-file /declare/g export types.d.ts --isRegex",
"generate-docs": "npm run jsdoc && npm run typings",
"git-add-docs": "git add doc/ types.d.ts"
},
"pre-commit": [
"generate-docs",
"git-add-docs"
],
"author": "Adobe Inc.",
"license": "Apache-2.0",
"engines": {
"node": ">=18"
},
"repository": "adobe/aio-lib-state",
"keywords": [
"sdk",
"openwhisk",
"state-store",
"persistence",
"cloud-native",
"adobe-io",
"abstraction",
"key-value"
],
"devDependencies": {
"@types/jest": "^29.5.0",
"codecov": "^3.6.1",
"dotenv": "^16.3.1",
"eslint": "^8",
"eslint-config-standard": "^17",
"eslint-plugin-import": "^2",
"eslint-plugin-jest": "^27",
"eslint-plugin-jsdoc": "^48",
"eslint-plugin-n": "^16.4",
"eslint-plugin-node": "^11",
"eslint-plugin-promise": "^6",
"jest": "^29",
"jsdoc-to-markdown": "^8.0.0",
"pre-commit": "^1.2.2",
"replace-in-file": "^7.0.1",
"stdout-stderr": "^0.1.13",
"tsd-jsdoc": "^2.4.0"
},
"dependencies": {
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"@adobe/aio-lib-core-networking": "^5",
"@adobe/aio-lib-env": "^3",
"ajv": "^8.12.0",
"lodash.clonedeep": "^4.5.0"
}
}