This repository was archived by the owner on Sep 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.15 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.15 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
74
75
76
77
78
{
"name": "crudodb",
"version": "0.0.0-development",
"description": "offline first crud api for indexeddb",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc -p src/tsconfig.app.json",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"format:prettier": "prettier --config .prettierrc --write",
"format:prettier:all": "yarn format:prettier \"**/*.ts\"",
"semantic-release": "semantic-release",
"lint:es:fix": "yarn eslint --fix",
"validate": "tsc --noEmit -p src/tsconfig.app.json"
},
"repository": {
"type": "git",
"url": "https://github.com/SourceCodeBot/crudodb.git"
},
"keywords": [
"indexeddb",
"crud",
"wrapper",
"offline-first"
],
"author": "SourceCodeBot <dev@nils-heinemann.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SourceCodeBot/crudodb/issues"
},
"homepage": "https://github.com/SourceCodeBot/crudodb#readme",
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^14.11.5",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-jest": "^26.5.2",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-ban": "^1.5.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-typescript": "^0.14.0",
"eslint-plugin-unused-imports": "^1.0.0",
"fake-indexeddb": "^3.0.0",
"husky": "^4.3.0",
"jest": "^26.5.2",
"jest-preset-typescript": "^1.2.0",
"lint-staged": "^10.5.0",
"prettier": "^2.1.2",
"semantic-release": "^17.4.2",
"ts-jest": "^26.4.1",
"tslint": "^6.0.0",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^4.0.3"
},
"lint-staged": {
"*.+(js|ts)": [
"yarn format:prettier",
"yarn lint:es:fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"mem": "^4.0.0",
"yargs-parser": "20.2.7"
}
}