-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 1.62 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
{
"name": "awos-js",
"version": "2.1.4",
"description": "AWOS: Wrapper For OSS And AWS(MINIO) SDK",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"clean": "rimraf lib",
"format": "prettier --write \"{src,__tests__}/**/*.ts\" --single-quote --trailing-comma es5",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"prebuild": "npm run clean && npm run format && npm run lint && echo Using TypeScript && tsc --version",
"prepublish": "npm run build",
"build": "tsc",
"test": "jest"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"jest": {
"roots": [
"<rootDir>"
],
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
".(ts)": "ts-jest"
},
"testRegex": "__tests__/.*\\.spec\\.ts$",
"testEnvironment": "node",
"globals": {
"ts-jest": {
"diagnostics": false
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/shimohq/awos-js"
},
"keywords": [
"oss",
"s3",
"minio"
],
"author": "nEoYe",
"license": "ISC",
"dependencies": {
"ali-oss": "^6.1.0",
"assert": "^1.4.1",
"async-retry": "^1.2.3",
"aws-sdk": "^2.919.0",
"lodash": "^4.17.11",
"remove": "^0.1.5"
},
"devDependencies": {
"@types/jest": "^24.0.9",
"@types/lodash": "^4.14.122",
"@types/node": "^11.10.4",
"jest": "^24.1.0",
"prettier": "^1.16.4",
"rimraf": "^2.6.3",
"ts-jest": "^29.0.5",
"tslint": "^5.13.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "3.9.5"
}
}