-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
67 lines (67 loc) · 1.62 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
{
"name": "bundlesize-gh-action",
"version": "0.3.0",
"private": true,
"description": "bundlesize-gh-action",
"main": "lib/main.js",
"scripts": {
"build": "tsc && rollup -c ./rollup.config.js",
"dev": "tsc --watch",
"test": "jest",
"test-build": "echo 'no need to build for testing in this repo'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackyef/bundlesize-gh-action.git"
},
"keywords": [
"actions",
"node",
"bundlesize"
],
"author": "Jacky Efendi",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/github": "^2.1.1",
"brotli-size": "^4.0.0",
"bundlewatch": "^0.3.1",
"chalk": "^4.1.0",
"universal-user-agent": "^4.0.0"
},
"devDependencies": {
"@babel/types": "^7.7.4",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-typescript": "^3.1.1",
"@types/jest": "^24.0.25",
"@types/node": "^12.12.24",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"builtin-modules": "^3.2.0",
"eslint-config-xo-typescript": "^0.37.0",
"jest": "^24.9.0",
"jest-circus": "^24.7.1",
"rollup": "^2.33.2",
"ts-jest": "^24.3.0",
"tslib": "^2.0.3",
"typescript": "^3.7.4",
"xo": "^0.37.1"
},
"bundlewatch": {
"files": [
{
"path": "./lib/main.js",
"maxSize": "200 KB"
}
],
"ci": {
"trackBranches": [
"master",
"testing-branch-do-not-delete"
]
}
}
}