-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 1.74 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "selectel-storage-client",
"version": "0.7.0",
"description": "Node.js client for Selectel Storage",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"clean": "rimraf lib/* && rimraf dist/* && rimraf coverage/*",
"pre-commit": "lint-staged",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"test": "jest",
"prepare": "husky install"
},
"keywords": [
"selectel"
],
"lint-staged": {
"*.ts*": [
"prettier --write",
"git add"
]
},
"author": "Akiyakov Denis<newsiberian2015@yandex.ru>",
"license": "MIT",
"bugs": {
"url": "https://github.com/newsiberian/selectel-storage-client/issues"
},
"homepage": "https://github.com/newsiberian/selectel-storage-client#readme",
"dependencies": {
"got": "^11.8.2"
},
"devDependencies": {
"@types/jest": "27.0.1",
"@types/node": "16.7.1",
"dotenv": "10.0.0",
"faker": "5.5.3",
"husky": "^7.0.0",
"jest": "27.0.6",
"lint-staged": "11.1.2",
"prettier": "2.3.2",
"rimraf": "3.0.2",
"ts-jest": "27.0.5",
"ts-node": "10.2.1",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"typescript": "4.3.5"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*\\.test\\.ts)$",
"testPathIgnorePatterns": [
"/dist/",
"/node_modules/"
],
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
]
},
"prettier": {
"semi": true,
"singleQuote": true,
"bracketSpacing": true,
"trailingComma": "all",
"parser": "typescript"
},
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
}
}