-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.42 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
{
"name": "ts-devrant",
"version": "0.1.2",
"description": "DevRant API in TypeScript inspired by RantScript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"browser": "browser/index.js",
"files": [
"lib/",
"browser/"
],
"scripts": {
"test": "jest",
"lint": "eslint src/ --ext .ts",
"eslint:view": "eslint --print-config .eslintrc",
"build:node": "tsc",
"build:browser": "tsc --build tsconfig.browser.json",
"build": "npm run build:node && npm run build:browser",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devRant-Community/ts-devrant.git"
},
"keywords": [
"javascript",
"typescript",
"devrant"
],
"author": "Max",
"license": "MIT",
"bugs": {
"url": "https://github.com/devRant-Community/ts-devrant/issues"
},
"homepage": "https://github.com/devRant-Community/ts-devrant#readme",
"dependencies": {
"cross-fetch": "^3.1.4",
"debug": "^4.2.0"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.22",
"@types/typescript": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.10.0",
"jest": "^26.6.3",
"typescript": "^4.0.3"
}
}