-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.66 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
{
"type": "module",
"name": "@cstools-app/faceit-wrapper",
"version": "1.0.1",
"description": "",
"main": "index.js",
"private": false,
"files": [
"index.js",
"src/index.js",
"src/helpers/constants.js",
"src/helpers/utils.js"
],
"scripts": {
"test": "ava",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check **/*.js",
"prettier:fix": "prettier --write **/*.js",
"prepare": "husky install",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cstools-app/faceit-wrapper"
},
"keywords": [],
"author": {
"name": "Demian <cstools-app>",
"email": "[email protected]",
"url": "https://demiann.dev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/cstools-app/faceit-wrapper/issues"
},
"homepage": "https://github.com/cstools-app/faceit-wrapper#readme",
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@typescript-eslint/parser": "^5.6.0",
"ava": "^3.15.0",
"dotenv": "^10.0.0",
"eslint": "^7.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-security": "^1.4.0",
"husky": "^7.0.0",
"isomorphic-unfetch": "^3.1.0",
"prettier": "^2.0.5",
"standard-version": "^9.3.2",
"typescript": "^4.5.3"
},
"dependencies": {
"lodash": "^4.17.21"
}
}