-
Notifications
You must be signed in to change notification settings - Fork 118
/
package.json
42 lines (42 loc) · 1.07 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
{
"name": "aggtree",
"version": "0.14.0",
"description": "pivot table built on top of reltab",
"author": "Antony Courtney <antony.courtney@gmail.com>",
"homepage": "https://github.com/antonycourtney/tad#readme",
"license": "MIT",
"main": "dist/aggtree.js",
"types": "dist/aggtree.d.ts",
"scripts": {
"prepublish": "npm run build",
"clean": "rimraf dist",
"build": "tsc -p tsconfig-build.json",
"test": "jest --config jest.config.json --no-cache"
},
"dependencies": {
"lodash": "^4.17.21",
"loglevel": "^1.8.0"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^18.7.18",
"jest": "^27.4.6",
"mkdirp": "^1.0.4",
"prettier": "^2.5.1",
"reltab": "^0.12.0",
"reltab-sqlite": "^0.12.0",
"ts-jest": "^27.1.2",
"typescript": "^4.8.3"
},
"peerDependencies": {
"reltab": "^0.12.0",
"reltab-sqlite": "^0.12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antonycourtney/tad.git"
},
"bugs": {
"url": "https://github.com/antonycourtney/tad/issues"
}
}