-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.62 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
{
"name": "nodatabase",
"version": "1.1.1",
"description": "A simple persistent in-memory database.",
"keywords": [
"database",
"db",
"storage",
"in-memory",
"memory"
],
"homepage": "https://github.com/vostrnad/nodatabase#readme",
"bugs": {
"url": "https://github.com/vostrnad/nodatabase/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vostrnad/nodatabase.git"
},
"license": "MIT",
"author": "Vojtěch Strnad",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"benchmark": "yarn build && node benchmark",
"build": "rollup -c",
"coverage": "yarn test --coverage",
"lint": "prettier --check . && eslint .",
"prepack": "rimraf dist && yarn build",
"test": "jest --verbose ./test"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^16.11.21",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-unicorn": "^40.1.0",
"husky": "^4.3.8",
"jest": "^27.4.7",
"jest-extended": "^2.0.0",
"lint-staged": "^12.3.2",
"prettier": "^2.5.1",
"prettier-plugin-packagejson": "^2.2.15",
"rimraf": "^3.0.2",
"rollup": "^2.66.1",
"rollup-plugin-ts": "^2.0.5",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"engines": {
"node": "^10.17.0 || >=12"
}
}