This repository was 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 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.85 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.85 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
{
"name": "@shipengine/connect-loader",
"version": "3.2.0",
"description": "Internal library for loading ShipEngine Connect apps",
"keywords": [
"shipengine",
"connect",
"app"
],
"author": {
"name": "ShipEngine",
"email": "support@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-loader.git"
},
"main": "lib/index.js",
"types": "lib/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/version-bump-prompt": "^6.1.0",
"@types/chai": "^4.2.14",
"@types/hapi__joi": "^17.1.6",
"@types/js-yaml": "^3.12.5",
"@types/json5": "0.0.30",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.21",
"@types/source-map-support": "^0.5.3",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.13.0",
"json-schema": "^0.2.5",
"mocha": "^8.2.1",
"npm-check": "^5.9.0",
"nyc": "^15.1.0",
"shx": "^0.3.3",
"typescript": "^4.0.5"
},
"dependencies": {
"@shipengine/connect-sdk": "^12.5.3",
"js-yaml": "^3.14.1",
"json5": "^2.1.3",
"resolve-from": "^5.0.0",
"source-map-support": "^0.5.16"
}
}