-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.21 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
48
49
50
{
"name": "benchmarkjs-pretty",
"version": "2.0.1",
"description": "Tiny wrapper around benchmarkjs with a simpler api",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Marvin Hagemeister <hello@marvinh.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:marvinhagemeister/benchmarkjs-pretty.git"
},
"scripts": {
"build": "rimraf dist/ && tsc",
"test": "mocha -r ts-node/register src --extensions ts,tsx --timeout=15000 'src/**/__tests__/*.spec.ts'",
"prepublishOnly": "npm t && npm run build",
"precommit": "lint-staged"
},
"dependencies": {
"@types/benchmark": "^1.0.33",
"benchmark": "^2.1.4",
"kolorist": "^1.2.6"
},
"devDependencies": {
"@types/chai": "^4.2.13",
"@types/mocha": "^8.0.3",
"chai": "^4.2.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"mocha": "^8.1.3",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"trailingComma": "all",
"arrowParens": "avoid"
}
}