-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.55 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
58
59
60
61
62
63
64
65
66
67
{
"author": "DroidXrX <droidxrx@gmail.com> (https://github.com/droidxrx)",
"bugs": {
"url": "https://github.com/droidxrx/mal-api-v2/issues"
},
"description": "An awesome library to connect with the new MyAnimeList's API v2!",
"homepage": "https://github.com/droidxrx/mal-api-v2#readme",
"keywords": [
"anime",
"manga",
"mal-api"
],
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"name": "mal-api-v2",
"repository": {
"type": "git",
"url": "git+https://github.com/droidxrx/mal-api-v2.git"
},
"version": "1.0.4",
"devDependencies": {
"@types/node": "^16.7.10",
"cors": "^2.8.5",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"express": "^4.17.1",
"jsonfile": "^6.1.0",
"typedoc": "^0.22.3",
"typedoc-plugin-markdown": "^3.11.0",
"typescript": "^4.4.3",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"query-string": "^7.0.1",
"superagent": "^6.1.0"
},
"scripts": {
"build": "rimraf lib/index.js && yarn webpack --config ./webpack.config.js",
"test": "nodemon --exec \"kill-port 8080 && node test\" --watch lib --watch test -e js"
},
"clean-publish": {
"files": [
".git",
".vscode",
".gitignore",
".eslintrc.js",
"tsconfig.json",
"webpack.config.js",
"src",
"node_modules",
"yarn.lock",
".prettierignore",
"docs"
],
"fields": [
"clean-publish",
"scripts",
"devDependencies"
]
}
}