forked from javascriptdata/danfojs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.51 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
97
{
"name": "danfojs",
"version": "0.2.2",
"description": "JavaScript library providing high performance, intuitive, and easy to use data structures for manipulating and processing structured data.",
"main": "lib/bundle.js",
"types": "danfojs/types/index.d.ts",
"directories": {
"test": "danfojs/tests"
},
"contributors": [
{
"name": "Rising Odegua"
},
{
"name": "Stephen Oni"
}
],
"files": [
"lib/",
"danfojs/src/",
"danfojs/types"
],
"dependencies": {
"@tensorflow/tfjs": "2.8.5",
"mathjs": "7.5.1",
"plotly.js": "1.54.7",
"table": "^5.4.6",
"xlsx": "^0.16.7",
"@babel/runtime": "^7.12.13"
},
"scripts": {
"test": "yarn run build && karma start --single-run --browsers ChromeHeadless karma.conf.js",
"build": "babel ./danfojs/src -d ./dist --no-comments",
"lint": "eslint ./danfojs/src",
"bundle": "webpack",
"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 <[email protected]>",
"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-modules-umd": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.10.4",
"@babel/register": "^7.10.1",
"babel-loader": "^8.1.0",
"browserify": "16.5.2",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"eslint": "^7.1.0",
"karma": "5.2.3",
"karma-browserify": "7.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"mocha": "^7.2.0",
"mocha-lcov-reporter": "^1.3.0",
"mocha-loader": "^5.1.2",
"mocha-webpack": "^1.1.0",
"nyc": "^15.1.0",
"parcel-bundler": "^1.12.4",
"source-map-loader": "^1.0.0",
"transform-loader": "^0.2.4",
"webpack": "5.21.2",
"webpack-cli": "4.5.0"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"sideEffects": false
}