-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "@condenast/perf-kit",
"version": "0.1.4",
"description": "Perf kit is a toolchain for testing performance regressions in JavaScript code.",
"main": "dist/index.js",
"private": false,
"scripts": {
"build": "rm -rf dist && tsc && cp -R src/help dist/help",
"typecheck": "tsc",
"lint": "eslint src/**/*.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CondeNast/perf-kit.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/CondeNast/perf-kit/issues"
},
"homepage": "https://github.com/CondeNast/perf-kit#readme",
"devDependencies": {
"@types/minimist": "1.2.5",
"@types/node": "20.14.11",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"lint-staged": "15.2.7",
"prettier": "2.8.8",
"typescript": "5.0.4"
},
"dependencies": {
"minimist": "^1.2.5",
"simple-statistics": "7.8.3",
"ttest": "4.0.0"
},
"lint-staged": {
"src/**/*.ts": [
"npm run lint"
]
}
}