-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (38 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (38 loc) · 1.11 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
{
"name": "typed-cache",
"version": "1.0.4",
"main": "index.js",
"description": "Library for caching data with many engines(memory,redis,etc...).",
"homepage": "https://github.com/Blynskyniki/cache-service#readme",
"scripts": {
"test": "rm -rf ./dist && ./node_modules/.bin/jest -i --coverage --forceExit",
"clear": "rm -rf ./dist",
"copyData": "cp package.json ./dist/package.json && cp ./README.md ./dist/README.md ",
"build": "rm -rf ./dist && ./node_modules/.bin/tsc && cp package.json ./dist/package.json",
"pub": "npm run clear && npm run build && npm run copyData && cd ./dist && npm publish "
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.13.5",
"jest": "25.2.1",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"ts-node": "^7.0.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.10.0",
"typescript": "^3.7.3"
},
"keywords": [
"cache",
"typecript"
],
"author": "BlynskyNiki",
"license": "ISC",
"dependencies": {
"uuid": "^8.0.0"
}
}