-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.66 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-reporters",
"version": "0.13.0-alpha.1",
"description": "Home of the perfrunner reporters",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "exit 0",
"prettier": "prettier --config ../../.prettierrc --write ./src/**/*.ts",
"tsc": "tsc",
"copyfiles": "copyfiles",
"parcel": "parcel",
"build:html": "parcel build src/reporters/html/index.html --no-source-maps --out-dir dist/reporters/html",
"build:md": "copyfiles -f src/reporters/md/index.md ./dist/reporters/md",
"build:reporters": "npm run build:html && npm run build:md",
"build": "tsc -p . && npm run build:reporters",
"pack": "npm pack",
"preversion": "npm run build && npm run test",
"prepublish": "npm run build && npm run test"
},
"keywords": [
"perfrunner",
"performance"
],
"author": "drag13",
"readme": "https://github.com/Drag13/perfrunner/blob/master/packages/perfrunner-reporters/readme.md",
"homepage": "https://github.com/Drag13/perfrunner",
"license": "MIT",
"devDependencies": {
"@types/chart.js": "^2.9.24",
"@types/json2csv": "~5.0.1",
"@types/mustache": "~4.0.1",
"@types/node": "^14.11.2",
"@types/web-resource-inliner": "~4.2.0",
"copyfiles": "~2.2.0",
"husky": "~4.2.5",
"parcel-bundler": "^1.12.5",
"parcel-plugin-inline-source": "~1.0.0",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
},
"dependencies": {
"bootstrap": "^4.5.2",
"chart.js": "~2.9.3",
"jquery": "~3.5.1",
"json2csv": "~5.0.1",
"mustache": "~4.0.1",
"perfrunner-core": "^0.13.0-alpha.1",
"popper.js": "~1.16.1"
},
"files": [
"dist"
]
}