forked from bennyboer/table-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 830 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
{
"name": "table-engine",
"version": "0.1.3",
"description": "Library to visualize huge tables in web environments",
"files": [
"lib/**/*"
],
"main": "lib/bundled/bundle.js",
"scripts": {
"build": "tsc",
"test": "jest --config jest.config.js",
"bundle": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bennyboer/table-engine.git"
},
"keywords": [],
"author": "Benjamin Eder",
"license": "MIT",
"bugs": {
"url": "https://github.com/bennyboer/table-engine/issues"
},
"homepage": "https://github.com/bennyboer/table-engine#readme",
"devDependencies": {
"@types/jest": "^26.0.24",
"jest": "^27.0.6",
"ts-jest": "^27.0.4",
"ts-loader": "^9.2.4",
"typescript": "^4.6.4",
"webpack": "^5.48.0",
"webpack-cli": "^4.7.2"
},
"dependencies": {
"rxjs": "^7.4.0"
}
}