forked from ordercloud-api/ordercloud-seed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.55 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
{
"name": "@ordercloud/seeding",
"version": "1.0.24",
"description": "Download and upload seeding files from the OrderCloud platform.",
"bin": "dist/cli.js",
"scripts": {
"test": "jest",
"build": "rollup --config",
"pkg": "pkg . --targets node14-win-x64,node14-macos-x64,node14-linux-x64 --out-path exe"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"unpkg": "dist/index.umd.js",
"author": "Oliver Heywood",
"repository": "https://github.com/ordercloud-api/ordercloud-seed",
"license": "ISC",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"roots": [
"./tests"
]
},
"dependencies": {
"@ordercloud/portal-javascript-sdk": "0.0.1-beta.19",
"@types/jwt-decode": "^3.1.0",
"axios": "^0.21.1",
"bottleneck": "^2.19.5",
"chalk": "^4.1.1",
"dotenv": "^8.2.0",
"fs": "0.0.1-security",
"js-yaml": "^4.0.0",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"node-emoji": "^1.10.0",
"ordercloud-javascript-sdk": "^4.2.2",
"qs": "^6.9.6",
"typescript": "^4.2.3",
"yargs": "^15.4.1"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@types/jest": "^26.0.23",
"@types/js-yaml": "^4.0.1",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.35",
"@types/node-emoji": "^1.8.1",
"@types/qs": "^6.9.6",
"jest": "^26.6.3",
"rollup": "^2.46.0",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1"
}
}