-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.45 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
{
"name": "@iwonz/myarena-ru-nodejs-api",
"version": "4.0.1",
"description": "Library for using server API in MyArena.ru hosting",
"keywords": [
"myarena.ru api"
],
"repository": "https://github.com/iwonz/myarena-ru-nodejs-api.git",
"author": "iwonz <iwonz@yandex.ru>",
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"files": [
"dist/"
],
"types": "dist/typings/index.d.ts",
"bugs": {
"url": "https://github.com/iwonz/myarena-ru-nodejs-api/issues"
},
"homepage": "https://github.com/iwonz/myarena-ru-nodejs-api#readme",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rimraf dist && npm run tsc",
"tsc": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 0",
"release": "np"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
},
"devDependencies": {
"@types/node": "^14.14.5",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.5.0",
"np": "*",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"typescript": "^4.0.5"
},
"dependencies": {
"axios": "^0.21.0"
}
}