-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.12 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
{
"name": "@shuhei/rolling-window",
"version": "1.0.0",
"description": "A rolling time window",
"author": "Shuhei Kagawa <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --declaration",
"clean": "rm -rf dist",
"test": "jest",
"tdd": "jest --watch",
"ci": "jest --coverage",
"format": "prettier --write '**/*.{js,ts,yml,yaml,json}'",
"lint": "prettier -l '**/*.{js,ts,yml,yaml,json}' && tsc --noEmit && eslint . --ext .js,.ts"
},
"peerDependencies": {
"hdr-histogram-js": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"codecov": "^3.6.1",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-prettier": "^3.1.1",
"hdr-histogram-js": "^2.0.1",
"jest": "^26.6.2",
"prettier": "^2.1.2",
"ts-jest": "^26.4.3",
"typescript": "^3.7.3"
},
"publishConfig": {
"access": "public"
}
}