-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 970 Bytes
/
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
{
"name": "@projectwallace/css-diff-action",
"version": "0.1.0",
"private": true,
"description": "GitHub Action to report the CSS Analytics diff in a PR",
"main": "dist/index.js",
"scripts": {
"test": "ava",
"build": "ncc build src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bartveneman/gh-action-css-diff.git"
},
"keywords": [],
"author": "Bart Veneman",
"license": "MIT",
"bugs": {
"url": "https://github.com/bartveneman/gh-action-css-diff/issues"
},
"homepage": "https://github.com/bartveneman/gh-action-css-diff#readme",
"devDependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^2.2.0",
"@vercel/ncc": "^0.33.3",
"ava": "^3.5.1",
"got": "^10.7.0"
},
"dependencies": {
"@sentry/node": "^7.16.0",
"pretty-bytes": "^5.3.0"
},
"prettier": {
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "always",
"semi": false,
"useTabs": true,
"singleQuote": true
}
}