-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.81 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
{
"name": "micro-table",
"type": "module",
"version": "0.8.2",
"description": "A micro dataframe implemented in JavaScript. Not inspired by, but by accident similar to Arquero.",
"source": "src/index.js",
"module": "dist/module.js",
"jsdelivr": "dist/module.js",
"files": [
"dist/module.js"
],
"scripts": {
"test": "jest --coverage",
"make-badges": "istanbul-badges-readme",
"watch": "parcel watch",
"build": "parcel build",
"lint": "eslint src/*.js",
"clean": "rm -rf dist/*",
"prepublish": "npm run build",
"prebuild": "npm run test && npm run clean",
"pretest": "npm run lint",
"posttest": "npm run make-badges",
"publish_patch": "npm install && npm version patch && npm publish && git push",
"publish_minor": "npm install && npm version minor && npm publish && git push",
"publish_major": "npm install && npm version major && npm publish && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stuwilmur/micro-table.git"
},
"keywords": [
"database",
"dataframe",
"datatable",
"model",
"query",
"statistics",
"table",
"transformation",
"spreadsheet"
],
"author": "Stu Murray",
"license": "MIT",
"bugs": {
"url": "https://github.com/stuwilmur/micro-table/issues"
},
"homepage": "https://github.com/stuwilmur/micro-table#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-transform-modules-commonjs": "^7.19.6",
"istanbul-badges-readme": "^1.8.2",
"jest": "^29.3.0",
"parcel": "^2.8.0"
},
"dependencies": {
"d3": "^7.6.1"
},
"overrides": {
"got": "^12.1.0"
},
"jest": {
"moduleNameMapper": {
"^d3$": "<rootDir>/node_modules/d3/dist/d3.min.js"
},
"coverageReporters": [
"json-summary"
]
}
}