-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
71 lines (71 loc) · 2.08 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "tachometer-reporter-action",
"version": "2.4.1",
"description": "Report the results of Polymer/tachometer in a comment for PRs",
"main": "lib/index.js",
"scripts": {
"prepare": "npm run build",
"dev": "watch \"sucrase --production -t jsx --jsx-pragma h -d lib ./src\" src",
"build": "npm run build:index && npm run build:action ",
"build:index": "sucrase --production -t jsx --jsx-pragma h -d lib ./src",
"build:action": "rollup -c ./rollup.config.js",
"test": "uvu tests",
"test:coverage": "c8 --check-coverage --statements 100 --reporter=html --reporter=text npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrewiggins/tachometer-reporter-action.git"
},
"keywords": [
"tachometer",
"benchmarks",
"action",
"github"
],
"author": "Andre Wiggins",
"license": "MIT",
"bugs": {
"url": "https://github.com/andrewiggins/tachometer-reporter-action/issues"
},
"homepage": "https://github.com/andrewiggins/tachometer-reporter-action#readme",
"lint-staged": {
"**/*.{js,jsx,ts,tsx,yml,json}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run build && git add dist && lint-staged"
}
},
"devDependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@octokit/openapi-types": "^3.2.0",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-sucrase": "^3.1.0",
"@sinonjs/fake-timers": "^6.0.1",
"c8": "^7.2.1",
"clean-set": "^1.1.2",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"rollup": "^2.21.0",
"rollup-plugin-node-externals": "^2.2.0",
"sucrase": "^3.15.0",
"tachometer": "^0.5.8",
"uvu": "^0.3.0",
"watch": "^1.0.2"
},
"dependencies": {
"@actions/glob": "^0.1.1",
"escape-string-regexp": "^4.0.0",
"node-html-parser": "^1.2.20",
"pretty-bytes": "^5.3.0",
"ua-parser-js": "^0.7.21",
"xstate": "^4.11.0"
}
}