-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.18 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
{
"name": "temporal-cache",
"version": "0.1.0",
"description": "Time-based cache invalidation",
"main": "temporalcache.js",
"types": "temporalcache.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/timkpaine/iexjs"
},
"engines": {
"node": ">=10.18.1"
},
"license": "Apache-2.0",
"files": [
"dist/**/*",
"src/less/*.less",
"babel.config.js",
"index.d.ts"
],
"scripts": {
"build": "echo \"nothing to do\"",
"fix": "yarn lint --fix",
"lint": "eslint temporalcache.js",
"test": "jest --config .jestrc.js"
},
"publishConfig": {
"access": "public"
},
"dependencies": {},
"devDependencies": {
"eslint": "^8.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"npm-run-all": "^4.1.3",
"prettier": "^2.8.3"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"ecstatic": "^4.1.3",
"hosted-git-info": "^2.8.9",
"lodash": "^4.17.21",
"node-fetch": "^2.6.7",
"path-parse": "^1.0.7",
"tmpl": "^1.0.5"
}
}