-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.05 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
{
"name": "timer-wheel",
"version": "1.0.0",
"description": "Timer wheel for managing expiration of a large amount of items",
"license": "MIT",
"repository": "aholstenson/timer-wheel",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"build": "tsc --module commonjs --target es5 --outDir dist/cjs && tsc --module es6 --target es6 --outDir dist/esm",
"prebuild": "rimraf dist",
"prepublishOnly": "npm run build"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"engines": {
"node": ">=8.0.0"
},
"sideEffects": false,
"keywords": [
"timer",
"timer wheel",
"expiration",
"scheduling"
],
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.6.1",
"coveralls": "^3.1.0",
"jest": "^27.0.3",
"jest-config": "^27.0.3",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.1",
"tslint": "^6.1.3",
"typescript": "^4.3.2"
}
}