-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.71 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
{
"name": "fns-api",
"version": "1.0.8",
"description": "Methods of working with FNS API",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"dist"
],
"scripts": {
"prebuild": "npm run del",
"build": "tsc -p tsconfig.build.json",
"prewatch": "npm run del",
"watch": "tsc -p tsconfig.build.json --watch",
"del": "rimraf dist",
"format": "prettier --write \"{lib,tests,examples}/**/*.ts\"",
"lint": "eslint \"{lib,tests,examples}/**/*.ts\" --fix",
"test:e2e": "jest --config ./tests/jest-e2e.json",
"postversion": "npm run push",
"push": "git push origin master --tags",
"prepare": "husky install"
},
"peerDependencies": {
"axios": ">= 0.27.2"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-angular": "^18.4.3",
"@types/jest": "^29.5.9",
"@types/node": "^20.9.3",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"axios": "^1.6.2",
"dotenv": "^16.3.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
},
"lint-staged": {
"*.ts": "prettier --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nikolaynau/fns-api.git"
},
"keywords": [
"fns",
"api",
"axios"
],
"author": "Nikolay Naumenkov",
"license": "MIT",
"bugs": {
"url": "https://github.com/nikolaynau/fns-api/issues"
},
"homepage": "https://github.com/nikolaynau/fns-api#readme"
}