-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.41 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
51
52
53
54
{
"name": "perfrunner-core",
"version": "0.13.0-alpha.1",
"description": "Automated UI performance test tool to measure performance changes for the web apps and sites",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"test": "ts-mocha -p ./tsconfig.json ./**/*.test.ts",
"tsc": "tsc",
"prettier": "prettier --config ../../.prettierrc --write ./src/**/*.ts",
"build": "tsc -p .",
"pack": "npm pack",
"preversion": "npm run build && npm run test",
"prepublish": "npm run build && npm run test"
},
"keywords": [
"perfrunner",
"performance",
"fcp",
"first-contentful-paint",
"performance-metrics",
"puppeteer",
"front-end",
"web",
"testing",
"performance-testing"
],
"author": "drag13",
"license": "MIT",
"readme": "https://github.com/Drag13/perfrunner/blob/master/packages/perfrunner-core/readme.md",
"homepage": "https://github.com/Drag13/perfrunner",
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/lowdb": "~1.0.9",
"@types/mocha": "~7.0.2",
"@types/node": "^14.11.2",
"@types/yup": "^0.29.7",
"chai": "~4.2.0",
"husky": "~4.2.5",
"mocha": "~7.2.0",
"prettier": "^2.5.1",
"ts-mocha": "~7.0.0",
"ts-node": "~8.10.2",
"typescript": "^4.5.4"
},
"dependencies": {
"lowdb": "~1.0.0",
"puppeteer": "^13.0.0",
"yup": "^0.29.3"
},
"files": [
"dist"
]
}