-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.9 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.9 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@tartarus/data",
"version": "0.4.10",
"description": "Helper tools for downloading and building datasets",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"td": "./dist/cli/index.js"
},
"files": [
"dist/**/*"
],
"keywords": [
"tartarus",
"deep learning",
"machine learning",
"ml",
"dataset",
"data set",
"nn"
],
"scripts": {
"build": "tsc",
"test": "mocha --reporter spec 'test/**/*.ts'",
"prepublishOnly": "rm -rf ./dist && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/salieri/tartarus-data.git"
},
"author": {
"name": "Aleksi Asikainen",
"email": "aleksi.asikainen@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/salieri/tartarus-data/issues"
},
"homepage": "https://github.com/salieri/tartarus-data#readme",
"engines": {
"node": ">= 8.0.0"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@hapi/joi": "^15.1.0",
"axios": "^0.19.0",
"basic-ftp": "^3.8.0",
"chalk": "^2.4.2",
"commander": "^2.20.0",
"csvtojson": "^2.0.10",
"execa": "^2.0.3",
"js-sha256": "^0.9.0",
"js-yaml": "^3.13.1",
"jsdom": "^15.1.1",
"lodash": "^4.17.14",
"shell-escape": "^0.2.0",
"shelljs": "^0.8.3",
"stream-buffers": "^3.0.2",
"untildify": "^4.0.0",
"xml-js": "^1.6.11",
"yargs": "^13.3.0"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/node": "^7.5.0",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@babel/preset-typescript": "^7.3.3",
"@babel/register": "^7.4.4",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/commander": "^2.12.2",
"@types/hapi__joi": "^15.0.2",
"@types/js-yaml": "^3.12.1",
"@types/jsdom": "^12.2.4",
"@types/lodash": "^4.14.136",
"@types/mocha": "^5.2.7",
"@types/node": "^12.6.8",
"@types/shell-escape": "^0.2.0",
"@types/stream-buffers": "^3.0.3",
"@types/yargs": "^13.0.2",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"babel-plugin-module-resolver": "^3.2.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.4",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-prettier": "^3.1.0",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"remark-cli": "^6.0.1",
"remark-preset-lint-recommended": "^3.0.3",
"source-map-support": "^0.5.12",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-config-airbnb": "^5.11.1",
"typedoc": "^0.14.2",
"typescript": "^3.5.3"
}
}