-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 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
{
"name": "@shipengine/connect-local-dev-api",
"version": "2.2.1",
"description": "The ShipEngine Integration Platform local development API",
"author": {
"name": "ShipEngine",
"email": "[email protected]",
"url": "https://www.shipengine.com"
},
"license": "Apache-2.0",
"homepage": "https://www.shipengine.com/docs/integration-platform/",
"repository": {
"type": "git",
"url": "git+https://github.com/ShipEngine/connect-local-dev-api.git"
},
"bugs": {
"url": "https://github.com/ShipEngine/connect-local-dev-api/issues"
},
"main": "lib/server.js",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"bump": "bump --tag --push --all",
"clean": "shx rm -rf coverage lib",
"coverage": "nyc npm run test",
"format": "prettier --write src/**/*.ts",
"lint": "eslint src/**/*",
"release": "npm run upgrade && npm run clean && npm run build && npm run lint && npm test && npm run bump",
"start": "node lib/start.js",
"start:dev": "nodemon",
"test": "mocha -r ts-node/register test/**/*.spec.ts",
"upgrade": "npm-check -u && npm audit fix"
},
"dependencies": {
"@shipengine/connect-loader": "^3.2.0",
"chai": "^4.2.0",
"chalk": "^4.1.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"serialize-error": "^7.0.1"
},
"devDependencies": {
"@jsdevtools/version-bump-prompt": "^6.1.0",
"@shipengine/connect-sdk": "^12.6.0",
"@types/chai": "^4.2.14",
"@types/cors": "^2.8.9",
"@types/eslint": "^7.2.6",
"@types/express": "^4.17.11",
"@types/hapi__joi": "^17.1.6",
"@types/mocha": "^8.0.4",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"chai-http": "^4.3.0",
"eslint": "^7.13.0",
"mocha": "^8.2.1",
"nodemon": "^2.0.7",
"npm-check": "^5.9.2",
"shx": "^0.3.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"engines": {
"node": ">=10"
},
"engineStrict": true
}