-
-
Notifications
You must be signed in to change notification settings - Fork 224
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.61 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.61 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
{
"name": "danfojs-node",
"version": "1.2.0",
"description": "JavaScript library providing high performance, intuitive, and easy to use data structures for manipulating and processing structured data.",
"main": "dist/danfojs-node/src/index.js",
"types": "dist/danfojs-node/src/index.d.ts",
"directories": {
"test": "test"
},
"contributors": [
{
"name": "Rising Odegua"
},
{
"name": "Stephen Oni"
}
],
"files": [
"dist/"
],
"dependencies": {
"@tensorflow/tfjs-node": "^3.13.0",
"mathjs": "^15.2.0",
"node-fetch": "^2.6.1",
"papaparse": "^5.3.1",
"request": "^2.88.2",
"stream-json": "^1.7.3",
"table": "6.7.1",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.19.3/xlsx-0.19.3.tgz"
},
"scripts": {
"test": "nyc mocha --require ts-node/register test/**/*.test.ts",
"test:clean": "yarn build:clean && yarn test",
"dev": "nodemon",
"build": "tsc",
"build:clean": "rm -rf ./dist && node ./scripts/prebuild.js && tsc",
"lint": "eslint ./src",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"coverage": "nyc report --reporter=text-lcov | coveralls && nyc report --reporter=lcov",
"patch": "npm version patch"
},
"publishConfig": {
"access": "public",
"branches": [
"master"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/opensource9ja/danfojs.git"
},
"keywords": [
"pandas",
"data-analysis",
"data-manipulation",
"analysis"
],
"author": "Rising Odegua <risingodegua@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/opensource9ja/danfojs/issues"
},
"homepage": "https://github.com/opensource9ja/danfojs#readme",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.10.4",
"@babel/register": "^7.10.1",
"@types/chai": "^4.2.19",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.6",
"@types/papaparse": "^5.2.6",
"@types/request": "^2.48.7",
"@types/stream-json": "^1.7.1",
"@types/table": "^6.3.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.0",
"dotenv": "^10.0.0",
"dts-bundle-generator": "^5.9.0",
"eslint": "^7.1.0",
"mocha": "^7.2.0",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-mocha": "^10.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.4.2",
"yarn": "^1.22.10"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
}