-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.83 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.83 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
{
"name": "crud-storage",
"version": "1.0.5",
"description": "Set of storages implementing simple CRUD interface. Contains storage for both the client and the server.",
"type": "module",
"scripts": {
"test": "echo \"Hello there\"",
"build": "npm run build -ws",
"format": "npm run format -ws",
"lint": "npm run lint -ws"
},
"files": [
"packages/**/dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lika85456/crud-storage.git"
},
"workspaces": [
"packages/*"
],
"exports": {
".": "./packages/core/dist/index.js",
"./mongo": "./packages/mongo/dist/index.js",
"./client": "./packages/client/dist/index.js"
},
"keywords": [
"MongoDB",
"Typescript",
"CRUD"
],
"author": "lika85456",
"license": "ISC",
"bugs": {
"url": "https://github.com/lika85456/crud-storage/issues"
},
"homepage": "https://github.com/lika85456/crud-storage#readme",
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/node-fetch": "^3.0.3",
"@types/uuid": "^8.3.4",
"babel-jest": "^27.4.5",
"body-parser": "^1.19.1",
"express": "^4.17.2",
"fake-indexeddb": "^3.1.7",
"jest": "^27.4.5",
"jest-fetch-mock": "^3.0.3",
"jest-localstorage-mock": "^2.4.18",
"jsdom": "^19.0.0",
"mongodb-memory-server": "^8.1.0",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.5.4"
},
"jest": {
"resetMocks": false,
"setupFiles": [
"jest-localstorage-mock",
"fake-indexeddb/auto"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest",
"^.+\\.(js)$": "babel-jest"
}
}
}