-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 955 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 955 Bytes
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
{
"name": "@microcode/layer-cache",
"version": "1.3.0",
"author": "jesper@microcode.se",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"debug": "^4.1.1",
"lru-cache": "^4.1.2"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/debug": "^4.1.5",
"@types/lru-cache": "^5.1.0",
"@types/mocha": "^8.0.2",
"@types/node": "^14.0.27",
"chai": "4.2.0",
"cross-var": "^1.1.0",
"mocha": "^8.1.1",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"lint": "tslint -p tsconfig.json",
"prepare": "cross-var $npm_execpath run build",
"prepublishOnly": "cross-var $npm_execpath run test && cross-var $npm_execpath run lint",
"preversion": "cross-var $npm_execpath run lint"
},
"files": [
"dist/**/*"
]
}