-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
75 lines (75 loc) · 2.23 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
{
"name": "tensorflow-load-csv",
"version": "1.0.0",
"description": "TensorFlow.js CSV loading on steroids. Clean up, normalise, transform, shuffle, and split your data all in a handful of lines and dive right into the fun parts of ML.",
"main": "dist/lib/index.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "npm run test:lint -- --fix",
"build": "rollup -c rollup.config.ts",
"test": "run-s test:*",
"test:tsc": "tsc --noEmit",
"test:lint": "eslint --ext=js,ts,json,md . src tests",
"test:unit": "jest --coverage",
"generate:docs": "./scripts/generate-docs.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/isair/tensorflow-load-csv.git"
},
"keywords": [
"tensor",
"tensorflow",
"tensorflowjs",
"ml",
"machine",
"learning",
"csv",
"load"
],
"author": "Baris Sencan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/isair/tensorflow-load-csv/issues"
},
"homepage": "https://github.com/isair/tensorflow-load-csv#readme",
"devDependencies": {
"@commitlint/config-conventional": "^12.0.0",
"@tensorflow/tfjs": "^2.1.0",
"@tensorflow/tfjs-node": "^2.1.0",
"@types/jest": "^26.0.8",
"@types/node": "^14.14.35",
"@types/shuffle-seed": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.7.1",
"commitlint": "^12.0.1",
"eslint": "^6.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-markdown": "^1.0.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-sonarjs": "^0.6.0",
"husky": "^4.2.5",
"jest": "^26.2.2",
"jest-matcher-deep-close-to": "^2.0.1",
"lint-staged": "^10.2.11",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rollup": "^2.23.0",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.30.0",
"semantic-release": "^17.1.1",
"shellcheck": "^1.0.0",
"ts-jest": "^26.1.4",
"typedoc": "^0.20.27",
"typescript": "^4.0.2"
},
"peerDependencies": {
"@tensorflow/tfjs": "^2.0.1"
}
}