-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.46 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
{
"name": "@particular./shipengine-request",
"version": "0.0.0-semantic-release",
"author": "Adam Grohs <info@uniquelyparticular.com> (https://uniquelyparticular.com)",
"owner": "Particular.",
"description": "Please contact Particular. via info@uniquelyparticular.com for any questions",
"homepage": "https://github.com/uniquelyparticular/shipengine-request#readme",
"repository": "github:uniquelyparticular/shipengine-request",
"keywords": [
"shipengine",
"shipping",
"api",
"node",
"typescript",
"javascript",
"particular",
"particular."
],
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "yarn clean && tsc -d",
"clean": "rimraf dist",
"clean-install": "yarn clean; yarn install --force",
"test": "jest --passWithNoTests",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"cross-fetch": "3.1.5"
},
"devDependencies": {
"@types/fetch-mock": "7.3.3",
"@types/jest": "24.0.13",
"chai": "4.5.0",
"fetch-everywhere": "1.0.5",
"fetch-mock": "7.3.3",
"husky": "2.4.0",
"jest": "24.8.0",
"prettier": "1.17.1",
"pretty-quick": "1.11.1",
"rimraf": "2.6.3",
"semantic-release": "15.14.0",
"ts-jest": "24.0.2",
"typescript": "3.5.1"
},
"publishConfig": {
"access": "public"
}
}