-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 987 Bytes
/
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
{
"name": "@ordercloud/catalyst",
"version": "1.2.0",
"description": "Starter middleware, extensions, and tools for building APIs when working with OrderCloud.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup --config",
"pub": "npm publish --access public"
},
"repository": "https://github.com/ordercloud-api/ordercloud-javascript-catalyst",
"author": "Oliver Heywood",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "17.0.21",
"rollup": "^2.46.0",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "4.6.2"
},
"dependencies": {
"axios": "^0.26.1",
"crypto-js": "^4.1.1",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"node-cache": "^5.1.2",
"ordercloud-javascript-sdk": "4.4.4",
"raw-body": "^2.5.1",
"rsa-pem-from-mod-exp": "^0.8.4"
}
}