-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.54 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
{
"name": "@blueshit/oss-client",
"version": "1.3.1",
"description": "简单阿里云OSS客户端",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"scripts": {
"test": "jest",
"tag": "git tag v`node -p 'require(\"./package\").version'`",
"format": "prettier --write \"src/**/*.ts\"",
"clean": "rm -rf dist",
"test:cov": "jest --coverage",
"prepublishOnly": "npm run format && npm run clean && tsc && npm run test:cov",
"postpublish": "npm run tag && git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/npmshit/oss-client.git"
},
"keywords": [
"oss-client",
"aliyun-oss"
],
"author": "Yourtion <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/npmshit/oss-client/issues"
},
"homepage": "https://github.com/npmshit/oss-client#readme",
"peerDependencies": {
"@types/node": "*"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.13.7",
"jest": "^24.7.1",
"prettier": "^1.17.0",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5"
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "src/test",
"collectCoverageFrom": [
"src/index.ts"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
]
},
"dependencies": {
"@types/mime": "^2.0.0",
"mime": "^2.3.1"
}
}