-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.53 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@space48/sdm",
"version": "0.21.0",
"description": "Command line tools for piping data in and out of APIs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"sdm": "lib/bin/sdm.js",
"sdm-watch": "lib/bin/sdm-watch.js"
},
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"docs": "node lib/bin/generate-docs",
"infer-shopify-resources": "ts-node src/connectors/shopify/resource-inference/generate-shopify-resources",
"lint": "eslint --fix 'src/**/*.ts'",
"clean": "rimraf lib",
"prepare": "npm run clean && npm run build -- --build tsconfig.publish.json && npm run docs"
},
"engines": {
"node": ">= 10.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Space48/sdm.git"
},
"author": "Josh Di Fabio <[email protected]>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/Space48/sdm/issues"
},
"homepage": "https://github.com/Space48/sdm#readme",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"dependencies": {
"@space48/json-pipe": "^0.4.14",
"bluebird": "^3.7.2",
"chalk": "^4.1.0",
"cli-table3": "^0.6.0",
"conf": "^6.2.4",
"duration": "^0.2.2",
"fp-ts": "^2.9.3",
"io-ts": "^2.2.13",
"json5": "^2.2.0",
"node-fetch": "^2.6.7",
"node-ipc": "9.1.1",
"oauth": "^0.9.15",
"open": "^7.0.3",
"p-retry": "^4.2.0",
"query-string": "^6.12.1",
"ramda": "^0.27.1",
"shopify-api-node": "^3.6.2",
"soap": "^0.36.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.32",
"@types/json5": "^2.2.0",
"@types/node": "^12.12.37",
"@types/node-fetch": "^2.5.6",
"@types/node-ipc": "^9.1.3",
"@types/oauth": "^0.9.1",
"@types/open": "^6.2.1",
"@types/ramda": "^0.27.34",
"@types/request": "^2.48.5",
"@types/sax": "^1.2.1",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-security": "^1.5.0",
"husky": "^4.3.8",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.ts": [
"eslint --fix"
]
}
}