-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1.2 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
{
"name": "kelonio",
"version": "0.10.0",
"description": "Performance testing library",
"homepage": "https://github.com/mtkennerly/kelonio",
"license": "MIT",
"author": "Matthew T. Kennerly <[email protected]>",
"files": [
"out/*"
],
"main": "out/index.js",
"types": "out/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/mtkennerly/kelonio.git"
},
"scripts": {
"build": "rm -rf out && npx tsc -p ./",
"deploy": "npm run docs && touch docs/.nojekyll && npx gh-pages --dist docs --dotfiles --src **/*",
"docs": "npx typedoc ./src/index.ts --out docs --excludePrivate --excludeExternals",
"lint": "npx tslint --fix src/*.ts tests/*.ts",
"prepack": "npm run build",
"test": "npx jest --verbose --silent --coverage --runInBand"
},
"dependencies": {
"browser-hrtime": "^1.0.0",
"eventemitter3": "^5.0.0",
"mathjs": "^10.5.2"
},
"devDependencies": {
"@types/jest": "^24.0.21",
"@types/mocha": "^9.1.1",
"@types/node": "^12.12.5",
"gh-pages": "^3.2.3",
"jest": "^26.6.3",
"strip-indent": "^3.0.0",
"ts-jest": "^26.5.0",
"tslint": "^6.1.3",
"typedoc": "^0.22.15",
"typescript": "^4.6.4"
}
}