-
-
Notifications
You must be signed in to change notification settings - Fork 225
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.38 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.38 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
109
110
111
112
113
114
115
116
117
{
"name": "danfojs",
"version": "1.2.0",
"description": "JavaScript library providing high performance, intuitive, and easy to use data structures for manipulating and processing structured data.",
"exports": {
".": {
"types": "./dist/danfojs-browser/src/index.d.ts",
"node": "./dist/danfojs-browser/src/index.js",
"default": "./lib/bundle.esm.js"
}
},
"directories": {
"test": "tests"
},
"contributors": [
{
"name": "Rising Odegua"
},
{
"name": "Stephen Oni"
}
],
"files": [
"lib/",
"dist/"
],
"dependencies": {
"@tensorflow/tfjs": "^3.13.0",
"mathjs": "9.4.4",
"papaparse": "^5.3.1",
"table": "6.7.1",
"plotly.js-dist-min": "2.8.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.19.3/xlsx-0.19.3.tgz"
},
"scripts": {
"test": "karma start --single-run --browsers ChromeHeadless karma.conf.js",
"test:clean": "yarn build:clean && yarn run test",
"build": "node ./scripts/prebuild.js && tsc && yarn run build:es5-bundle && yarn run build:esm-bundle",
"build:es5-bundle": "webpack --mode production",
"build:esm-bundle": "esbuild src/index.ts --bundle --format=esm --platform=browser --target=esnext --minify --legal-comments=none --outfile=lib/bundle.esm.js",
"build:clean": "rimraf ./dist && rimraf ./lib && node ./scripts/prebuild.js && yarn run build",
"dev": "nodemon",
"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",
"@types/chai": "^4.2.19",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.5",
"@types/papaparse": "^5.2.6",
"@types/plotly.js-dist-min": "^2.3.0",
"@types/request": "^2.48.7",
"@types/stream-json": "^1.7.1",
"@types/table": "^6.3.2",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.1.0",
"browserify": "16.5.2",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"dotenv": "^10.0.0",
"esbuild": "^0.14.38",
"eslint": "^7.1.0",
"ify-loader": "^1.1.0",
"install-peers": "^1.0.3",
"json-loader": "^0.5.7",
"karma": "6.3.16",
"karma-browserify": "7.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"mocha": "^8.3.0",
"nyc": "^15.1.0",
"source-map-loader": "^3.0.0",
"ts-loader": "^9.2.6",
"typescript": "^4.4.2",
"webpack": "5.104.1",
"webpack-cli": "4.9.2",
"yarn": "^1.22.10"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"sideEffects": false
}