-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.4 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.4 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
{
"name": "tokenlist-cache",
"version": "0.2.0",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prepublishOnly": "rm -rf dist && npm run build",
"lint": "eslint src/*.ts test/*.ts",
"test": "NODE_ENV=test mocha --require ts-node/register test/**/*.test.ts",
"test-cov": "NODE_ENV=test nyc mocha test/*.test.ts"
},
"files": [
"dist",
"README.md"
],
"license": "MIT",
"dependencies": {
"@uniswap/token-lists": "^1.0.0-beta.27",
"better-sqlite3": "^7.4.4",
"fs-extra": "^10.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.4.1",
"@types/chai": "^4.2.12",
"@types/fs-extra": "^9.0.1",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.10",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"chai": "^4.2.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.4"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"text-summary",
"lcovonly",
"html"
],
"sourceMap": true
},
"keywords": [
"disk-cache",
"file-cache",
"ttl",
"sqlite3",
"cache"
]
}