-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
57 lines (57 loc) · 1.49 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
55
56
57
{
"name": "wonderful-bing-wallpaper",
"version": "0.3.4",
"description": "Simple bing daily wallpaper API lib for node.js",
"keywords": [
"bing",
"bing wallpaper",
"bing wallpaper api",
"daily-wallpaper",
"bing-daily-wallpaper",
"wonderful-bing-daily-wallpaper"
],
"private": false,
"license": "MIT",
"author": {
"name": "Surmon",
"email": "surmon@foxmail.com",
"url": "https://github.com/surmon-china"
},
"bugs": {
"url": "https://github.com/surmon-china/wonderful-bing-wallpaper/issues"
},
"homepage": "https://github.com/surmon-china/wonderful-bing-wallpaper#readme",
"repository": {
"type": "git",
"url": "https://github.com/surmon-china/wonderful-bing-wallpaper.git"
},
"main": "dist/bing.cjs.js",
"module": "dist/bing.esm.js",
"files": [
"src",
"dist",
"types"
],
"types": "types/bing.d.ts",
"scripts": {
"dev": "node dev/index.js",
"build": "libundler",
"lint": "eslint --ext .ts,.js src test",
"test": "jest",
"rebirth": "npm run lint && npm run test && npm run build",
"release": ". ./scripts/release.sh"
},
"devDependencies": {
"@surmon-china/libundler": "^2.2.0",
"@types/node": "^12.12.31",
"@types/xml2js": "^0.4.5",
"xml2js": "^0.4.23",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.7.0",
"jest": "^27.4.7",
"ts-jest": "^27.1.3",
"typescript": "^4.5.4"
}
}