-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.13 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.13 KB
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
{
"name": "refresh-cdn-cache",
"private": true,
"version": "1.2.3",
"main": "dist/index.js",
"license": "MIT",
"author": {
"name": "DevDengChao",
"url": "https://github.com/DevDengChao"
},
"repository": {
"type": "git",
"url": "https://github.com/DevDengChao/refresh-cdn-cache"
},
"scripts": {
"build": "tsc",
"format": "prettier ./ --write",
"test": "jest --detectOpenHandles --forceExit",
"test:e2e": "node examples/run-all-e2e-test.js",
"prerelease": "yarn install --production",
"release": "s registry publish"
},
"dependencies": {
"@alicloud/cdn20180510": "^8.0.0",
"@alicloud/openapi-client": "^0.4.15",
"@serverless-devs/core": "^0.1.66"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.4.0",
"dotenv": "^17.2.3",
"jest": "^30.2.0",
"prettier": "^3.6.2",
"ts-jest": "^29.4.5",
"typescript": "^5.9.3"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "ts-jest"
},
"collectCoverage": true,
"testPathIgnorePatterns": [
"dist/*",
"examples/*"
]
},
"engines": {
"node": ">=18"
}
}