-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
{
"name": "babel-plugin-auto-webp",
"version": "1.1.0",
"description": "require图片转换为 supportWebp ? 'webp' : '原格式' ",
"main": "index.js",
"scripts": {
"unit": "node --test index.test.js",
"test": "npm run unit && eslint .",
"release": "npm run test && node scripts/release",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"conventional-changelog": "^5.1.0",
"conventional-changelog-cli": "^4.1.0",
"core-js": "^3.36.0",
"eslint": "^8.57.0",
"execa": "^8.0.1",
"inquirer": "^9.2.16",
"read-package": "^1.0.2",
"read-pkg": "^9.0.1",
"semver": "^7.6.0",
"write-pkg": "^7.0.0"
},
"browserslist": [
"Chrome >= 47",
"iOS >= 1"
],
"eslintConfig": {
"parserOptions": {
"ecmaVersion": "latest"
},
"env": {
"node": true,
"es6": true
},
"extends": [
"eslint:recommended"
]
}
}