-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 2.6 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"dependencies": {
"axios": "^1.4.0"
},
"description": "Keep2share API client. Supports NodeJS and the browser.",
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"nock": "^13.3.1",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"ts-mocha": "^10.0.0",
"tslib": "^2.5.3",
"tsup": "^7.0.0",
"type-fest": "^3.12.0",
"typedoc": "^0.24.8",
"typescript": "^5.1.3"
},
"directories": {
"dist": "dist",
"test": "__tests__"
},
"engines": {
"node": ">=16"
},
"author": {
"name": "pfftdammitchris",
"email": "[email protected]",
"url": "https://github.com/pfftdammitchris"
},
"displayName": "k2s",
"homepage": "https://github.com/pfftdammitchris",
"keywords": [
"k2s"
],
"eslintConfig": {
"env": {
"browser": true,
"es2022": true,
"mocha": true
},
"extends": [
"eslint:recommended",
"plugin:import/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"root": true,
"rules": {
"import/default": 2,
"import/export": 2,
"import/named": 2,
"import/namespace": 2,
"import/no-unresolved": [
2,
{
"amd": true,
"commonjs": true
}
]
}
},
"eslintIgnore": [
"node_modules",
"dist"
],
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/pfftdammitchris/k2s/issues"
},
"repository": {
"url": "https://github.com/pfftdammitchris/k2s.git"
},
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.js",
"name": "k2s",
"nodemonConfig": {
"ignore": [
"*.json"
]
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
},
"prettier": {
"arrowParens": "always",
"printWidth": 80,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
},
"scripts": {
"build": "tsup",
"start": "tsup --watch",
"test": "cross-env NODE_ENV=test ts-mocha -p tsconfig.test.json --extensions ts --file src/__tests__/setup.ts --watch --watch-files \"src/**/*\" \"src/**/*.test.*\" --paths"
},
"types": "./dist/index.d.ts",
"version": "0.0.5",
"workspaces": []
}