-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.49 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.49 KB
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
{
"name": "ya-token-cli",
"version": "1.0.0",
"description": "Library to obtain OAuth-token to get access to Yandex services for server application",
"type": "module",
"main": "index.js",
"scripts": {
"lint": "eslint --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"lint:all": "npm run lint -- index.js lib/* specs/*",
"lint:all:fix": "npm run lint:all -- --fix",
"prepare": "husky install",
"test": "vitest --config=vitest.config.js run",
"test:watch": "vitest --config=vitest.config.js"
},
"engines": {
"node": ">= 16"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/RomiC/ya-token-cli.git"
},
"keywords": [
"yandex",
"oauth",
"token",
"cli"
],
"author": "Roman Charugin <roman@charugin.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/RomiC/ya-token-cli/issues"
},
"homepage": "https://github.com/RomiC/ya-token-cli#readme",
"devDependencies": {
"@vitest/coverage-v8": "^2.0.5",
"dotenv": "^17.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^48.2.3",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-prettier": "^4.2.5",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^2.8.8",
"vitest": "^2.0.5"
},
"lint-staged": {
"+(lib|specs)/*.js": "npm run lint:fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged -r --no-stash",
"pre-push": "npm test"
}
}
}