-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 822 Bytes
/
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
{
"name": "jpandas",
"version": "2.0.1",
"description": "A lightweight JavaScript package for working with tabular data, inspired by pandas in Python.",
"keywords": [
"jpandas",
"pandas",
"dataFrame",
"series",
"data analysis",
"data-manipulation",
"analysis",
"indexing",
"Rajnish Singh"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rajnish93/jpandas.git"
},
"author": {
"name": "Rajnish Singh",
"url": "https://rajnish.app/"
},
"license": "BSD-3-Clause",
"main": "src/index.js",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.5.4",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4"
},
"scripts": {
"build": "tsc",
"test": "jest",
"format": "prettier --write \"./**/*.{js,json}\""
}
}