-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.27 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
{
"name": "@openfinanceio/cache",
"version": "1.2.1",
"description": "A simple, in-memory cache for javascript projects",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"check": "tsc --noEmit",
"test": "jest",
"prepublishOnly": "rm -Rf dist; tsc"
},
"repository": {
"type": "git",
"url": "git+ssh://github.com:openfinanceio/ts-cache.git"
},
"keywords": [
"openfinance",
"cache",
"memcached",
"redis"
],
"author": "Openfinance Developers",
"license": "ISC",
"bugs": {
"url": "https://github.com/openfinanceio/ts-cache/issues"
},
"homepage": "https://github.com/openfinanceio/ts-cache#readme",
"dependencies": {
"@types/node": "^8.10.63",
"ts-simple-interfaces": "^0.4.3"
},
"devDependencies": {
"@types/jest": "^24.0.17",
"husky": "^1.3.1",
"jest": "^24.8.0",
"prettier": "^1.16.0",
"pretty-quick": "^1.10.0",
"ts-jest": "^24.0.2",
"ts-simple-interfaces-testing": "^0.4.0",
"typescript": "^3.9.7"
},
"prettier": {
"printWidth": 100,
"trailingComma": "es5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"roots": [
"<rootDir>/tests"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
}
}