-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "total-asset-size-action",
"version": "0.0.0",
"private": true,
"description": "Calculate & compare the asset sizes of PR builds.",
"main": "dist/index.js",
"scripts": {
"build": "ncc build index.js --license licenses.txt",
"lint": "eslint .",
"dev": "INPUT_REPO_TOKEN=\"ABC\" INPUT_FILE_PATTERNS=\"[\\\"dist/assets/*.js\\\",\\\"dist/assets/*.css\\\"]\" INPUT_BUILD_COMMAND=\"yarn build\" node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mansona/ember-asset-size-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Chris Manson",
"license": "MIT",
"dependencies": {
"@actions/core": "~1.4.0",
"@actions/exec": "~1.1.0",
"@actions/github": "~5.0.0",
"glob": "~7.1.7",
"gzip-size": "~6.0.0",
"pretty-bytes": "~5.6.0"
},
"devDependencies": {
"@vercel/ncc": "~0.30.0",
"chai": "~4.3.4",
"eslint": "~7.13.0",
"eslint-config-prettier": "~6.15.0",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-prettier": "~3.1.4",
"prettier": "~2.2.0",
"mocha": "~8.0.0"
},
"volta": {
"node": "12.22.5",
"yarn": "1.22.11"
}
}