-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.7 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.7 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "chainops-sdk",
"version": "1.6.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "npm run build && jest --coverage",
"build": "tsc",
"standard": "standard src/**/*.ts && npm run standard-tests",
"standard-tests": "standard tests/**/*.js",
"standard-tests-fix": "standard tests/**/*.js --fix",
"standard-fix": "standard src/**/*.ts --fix"
},
"author": "",
"license": "",
"devDependencies": {
"@types/aws4": "^1.5.1",
"@types/moment": "^2.13.0",
"@types/moment-timezone": "^0.5.12",
"@types/node": "^10.14.15",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"husky": "^3.0.3",
"lint-staged": "^9.2.1",
"standard": "^12.0.1",
"typescript": "^3.5.3"
},
"dependencies": {
"aws-sdk": "^2.509.0",
"aws4": "^1.8.0",
"axios": "^0.18.1",
"jest": "^24.8.0",
"moment": "^2.24.0",
"moment-timezone": "^0.5.26"
},
"lint-staged": {
"src/**/*.ts": [
"standard --fix",
"git add"
],
"tests/**/*.js": [
"standard --fix",
"git add"
]
},
"files": [
"dist/*"
],
"standard": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"env": [
"jest"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "npm run standard && lint-staged && npm test"
}
}
}