This repository has been archived by the owner on Mar 13, 2021. It is now read-only.
generated from JS-DevTools/template-node-typescript
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.95 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
{
"name": "@shipengine/connect-sdk",
"version": "12.6.4",
"description": "The official SDK for building ShipEngine connect apps",
"keywords": [
"shipengine",
"connect",
"platform",
"app",
"sdk",
"typescript",
"types",
"definitions"
],
"author": {
"name": "ShipEngine",
"email": "connect@shipengine.com",
"url": "https://connect.shipengine.com"
},
"license": "Apache-2.0",
"homepage": "https://connect.shipengine.com",
"repository": {
"type": "git",
"url": "https://github.com/ShipEngine/connect-sdk.git"
},
"main": "lib/public/index.js",
"types": "lib/public/index.d.ts",
"files": [
"lib"
],
"scripts": {
"clean": "shx rm -rf .nyc_output coverage lib",
"lint": "eslint src test",
"build": "tsc",
"watch": "tsc --watch",
"test": "mocha && npm run lint",
"coverage": "nyc node_modules/mocha/bin/mocha",
"upgrade": "npm-check -u && npm audit fix",
"bump": "bump --tag --push --all",
"release": "npm run upgrade && npm run clean && npm run build && npm test && npm run bump"
},
"engines": {
"node": ">=10"
},
"engineStrict": true,
"devDependencies": {
"@jsdevtools/host-environment": "^2.1.2",
"@jsdevtools/readdir-enhanced": "^6.0.4",
"@jsdevtools/version-bump-prompt": "^6.1.0",
"@types/chai": "^4.2.14",
"@types/hapi__joi": "^17.1.6",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.21",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"chai": "^4.2.0",
"eslint": "^7.17.0",
"mocha": "^8.2.1",
"npm-check": "^5.9.0",
"nyc": "^15.1.0",
"shx": "^0.3.3",
"source-map-support": "^0.5.19",
"typescript": "^4.1.3"
},
"dependencies": {
"@types/json-schema": "^7.0.6",
"@types/react-jsonschema-form": "^1.7.4",
"currency.js": "^2.0.2",
"joi": "^17.3.0",
"moment-timezone": "^0.5.32",
"uuid": "^8.3.2"
}
}