This repository has been archived by the owner on Oct 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.32 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@distributeaid/flexport-sdk",
"version": "0.0.0-development",
"description": "JavaScript client SDK for Flexport's API v2",
"scripts": {
"test": "jest",
"prettier": "prettier --write src/**/*.ts api-docs/*.yaml adr/*.md",
"postinstall": "check-node-version --package"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/distributeaid/flexport-sdk-js.git"
},
"keywords": [
"Distribute Aid",
"Flexport"
],
"author": "Distribute Aid | https://distributeaid.org/",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/distributeaid/flexport-sdk-js/issues"
},
"homepage": "https://github.com/distributeaid/flexport-sdk-js#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged && npm test"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --ext .js,.ts"
],
"*.{md,json,yaml,yml,js}": [
"prettier --write"
]
},
"devDependencies": {
"@bifravst/code-style": "8.0.118",
"@commitlint/cli": "11.0.0",
"@commitlint/config-angular": "11.0.0",
"@distributeaid/flexport-api-sandbox": "1.5.4",
"@semantic-release/commit-analyzer": "8.0.1",
"@types/jest": "26.0.14",
"@types/js-yaml": "3.12.5",
"husky": "4.3.0",
"jest": "26.5.0",
"js-yaml": "3.14.0",
"semantic-release": "17.1.2",
"ts-jest": "26.4.1",
"ts-loader": "8.0.4",
"typescript": "4.0.3"
},
"jest": {
"testURL": "http://localhost",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": ".+\\.spec\\.ts$",
"coverageReporters": [
"html",
"lcov"
],
"globals": {
"ts-jest": {
"diagnostics": true
}
}
},
"release": {
"branches": [
"saga"
],
"remoteTags": true
},
"dependencies": {
"check-node-version": "^4.0.3",
"deepmerge": "^4.2.2",
"fetch-ponyfill": "^6.1.1",
"fp-ts": "^2.8.2"
},
"publishConfig": {
"access": "public"
},
"files": [
"package-lock.json",
"dist",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=v14.8.0",
"npm": ">=6.0.0"
}
}