forked from preactjs/compressed-size-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 816 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
{
"name": "compressed-size-action",
"version": "2.0.1",
"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.2",
"@actions/exec": "^1.0.3",
"@actions/github": "^2.0.1",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@types/jest": "^26.0.0",
"babel-jest": "^25.5.1",
"compressed-size-plugin": "0.0.5",
"jest": "^29.5.0",
"microbundle": "^0.12.0-next.8"
},
"jest": {
"testEnvironment": "node"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
}
}