-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.97 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.97 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "tapjaw-importer",
"version": "2.0.0-rc15",
"description": "Create your own stream of payload messages to STDOUT from any API.",
"author": "Jeramy Wenserit <jeramy@digidip.net>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/digidip/tapjaw-importer"
},
"devDependencies": {
"@types/jest": "29.0.0",
"@types/jsdom": "16.2.14",
"@types/jsonpath": "0.2.0",
"@types/jsonwebtoken": "8.5.8",
"@types/luxon": "2.3.2",
"@types/node": "17.0.35",
"@types/puppeteer": "5.4.6",
"@types/split2": "3.2.1",
"@types/through": "0.0.30",
"@types/tough-cookie": "4.0.2",
"@types/xml2js": "0.4.11",
"@typescript-eslint/eslint-plugin": "5.27.1",
"@typescript-eslint/parser": "5.27.1",
"eslint": "8.17.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "6.0.0",
"jest": "29.0.0",
"jest-mock-process": "1.5.1",
"prettier": "2.6.2",
"ts-jest": "29.0.0",
"typedoc": "0.22.17",
"typedoc-plugin-mdn-links": "1.0.6",
"typedoc-plugin-missing-exports": "0.22.6",
"typedoc-umlclass": "0.6.1",
"typescript": "4.7.3"
},
"dependencies": {
"axios": "^1.3.5",
"axios-cookiejar-support": "^4",
"camelcase-keys": "^7",
"commander": "^10",
"csvtojson": "^2.0.10",
"deepmerge": "^4",
"globby": "^13.0.0",
"iconv-lite": "^0.6",
"jsdom": "^19.0.0",
"jsonpath": "^1.1.1",
"jsonwebtoken": "^9",
"luxon": "^2",
"node-html-parser": "^5.0.0",
"reflect-metadata": "^0.1.13",
"split2": "^4.1.0",
"through": "^2.3.8",
"tough-cookie": "^4",
"ts-transformer-keys": "^0.4",
"tslib": "^2",
"xml2js": "^0.4"
},
"main": "lib/index.js",
"engines": {
"node": ">=16"
},
"files": [
"/lib",
"/tsconfig.json",
"/tsconfig.build.json",
"/default.env",
"/LICENSE",
"/README.md",
"/docs",
"/api-docs"
],
"scripts": {
"test": "node node_modules/.bin/jest",
"lint": "node node_modules/.bin/eslint ./src --ext .ts",
"build": "node node_modules/.bin/tsc -p ./tsconfig.build.json",
"clean-build": "rm -rf ./lib && node node_modules/.bin/tsc -p ./tsconfig.build.json",
"watch": "node node_modules/.bin/tsc -w",
"api-docs": "rm -rf docs/assets docs/classes docs/enums docs/interfaces docs/modules index.html && node node_modules/.bin/typedoc",
"watch-api-docs": "node node_modules/.bin/typedoc --watch",
"create-release": "yarn version --no-git-tag-version && node release.js"
},
"types": "lib/index.d.ts"
}