-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.6 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
{
"name": "@otchy/sim-doc-db",
"version": "0.12.0",
"description": "SimDoc DB is a simple in-memory document database (NoSQL) written in TypeScript.",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist/* && tsc",
"test": "jest",
"lint": "eslint src/*",
"lint:fix": "eslint --fix src/*",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/otchy210/sim-doc-db.git"
},
"author": "Toru Ochiai <npm@otchy.net> (https://twitter.com/otchy)",
"license": "MIT",
"bugs": {
"url": "https://github.com/otchy210/sim-doc-db/issues"
},
"homepage": "https://github.com/otchy210/sim-doc-db#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^27.4.3",
"prettier": "^2.5.1",
"ts-jest": "^27.1.0",
"typescript": "^4.5.2"
},
"jest": {
"globals": {
"ts-jest": {
"useESM": true
}
},
"preset": "ts-jest/presets/default-esm"
}
}