-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 871 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 871 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
{
"name": "@microcode/expiring",
"version": "0.1.0",
"description": "Data containers with expiry",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Jesper Svennevid <jesper@microcode.se>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"chai": "^4.2.0",
"cross-var": "^1.1.0",
"mocha": "^7.1.1",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"files": [
"dist/**/*"
],
"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"
}
}