-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 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
{
"name": "node-onesky",
"version": "0.0.4",
"description": "Node.js OneSky translation service API Client",
"license": "MIT",
"author": "Alper Çıtak <citak.alper@gmail.com>",
"main": "./bin/cjs/index.js",
"module": "./bin/esm/index.js",
"types": "./bin/esm/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"test-watch": "jest --config jestconfig.json --watch",
"build": "rm -rf bin/* && tsc -p tsconfig.json && tsc -p tsconfig.cjs.json",
"dev": "ts-node-dev --respawn ./src/index.ts",
"lint": "eslint src/** --fix",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alpercitak/node-onesky.git"
},
"bugs": {
"url": "https://github.com/alpercitak/node-onesky/issues"
},
"homepage": "https://github.com/alpercitak/node-onesky",
"files": [
"bin/**/*"
],
"dependencies": {
"axios": "^0.26.0",
"form-data": "^4.0.0",
"md5": "^2.3.0"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/md5": "^2.3.2",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.11.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.2"
}
}