-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1 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
{
"name": "jataframe",
"version": "1.0.7",
"description": "Pandas like dataframes for javascript",
"main": "src/Jataframe.js",
"scripts": {
"lint": "eslint --fix && eslint src",
"test": "npm run lint && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/charlie-sanders/Jataframe.git"
},
"keywords": [
"dataframe",
"pandas",
"groupBy",
"aggregateBy",
"sum",
"mean",
"median",
"mode"
],
"devDependencies": {
"eslint": "^8.33.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.3.1",
"jest-expect-message": "^1.1.3"
},
"author": "Charlie Sanders",
"license": "ISC",
"bugs": {
"url": "https://github.com/charlie-sanders/Jataframe/issues"
},
"homepage": "https://github.com/charlie-sanders/Jataframe#readme"
}