-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
54 lines (54 loc) · 1.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
{
"name": "compressed-size-action",
"version": "2.7.0",
"main": "index.js",
"scripts": {
"build": "microbundle -f cjs --define 'navigator={}' --compress --no-sourcemap --target node src/index.js",
"test": "jest"
},
"license": "MIT",
"devDependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@types/jest": "^26.0.19",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"microbundle": "^0.12.4",
"pretty-bytes": "^5.4.1",
"size-plugin-core": "0.0.9"
},
"prettier": {
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
"overrides": [
{
"files": [
"*.json"
],
"options": {
"useTabs": false
}
}
]
},
"jest": {
"testEnvironment": "node"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
}
}