This repository was archived by the owner on Aug 26, 2022. It is now read-only.
forked from weeb-services/weeb-services
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.47 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.47 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
{
"name": "@tmuniversal/weeb-wrapper",
"version": "0.3.4",
"description": "API wrapper for weeb-services",
"main": "dist/index.js",
"types": "typings/index.d.ts",
"scripts": {
"build": "yarn run clean && tsc -p ./",
"test": "yarn run lint && node test/test.js",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore src/",
"lint:fix": "eslint --ext .js,.ts --ignore-path .gitignore src/ --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"prettiest": "yarn run prettier:fix; yarn run lint:fix",
"clean": "rimraf dist",
"prepublishOnly": "yarn run build && yarn test",
"postversion": "git push && git push --tags"
},
"keywords": [
"weeb-api",
"weebapi",
"weebservices"
],
"author": "Akio <akio@weeb.sh>",
"contributors": [
"Wolke <wolke@weeb.sh>",
"TMUniversal <me@tmuniversal.eu>"
],
"repository": "https://github.com/TMUniversal/weeb-wrapper.git",
"license": "MIT",
"bugs": {
"url": "https://github.com/TMUniversal/weeb-wrapper/issues"
},
"homepage": "https://github.com/TMUniversal/weeb-wrapper#readme",
"dependencies": {
"axios": "0.19.2"
},
"devDependencies": {
"@tmuniversal/ts": "^1.1.0",
"@tmware/eslint-config": "^1.0.0",
"@tmware/prettier-config": "^1.0.1",
"@types/lodash": "^4.14.158",
"@types/node": "^14.0.26",
"eslint": "^7.10.0",
"rimraf": "^3.0.2",
"typescript": "^4.0.3"
},
"prettier": "@tmware/prettier-config"
}