-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 985 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": "ez-conf-hillchart",
"version": "0.0.41",
"description": "A simple way to embed a hill chart in confluence",
"homepage": "https://github.com/lmonson/ez-conf-hillchart",
"repository": "github:lmonson/ez-conf-hillchart",
"type": "module",
"main": "lib/ez-confluence-hillchart.js",
"module": "lib/ez-confluence-hillchart.js",
"types": "lib/ez-confluence-hillchart.d.ts",
"scripts": {
"build": "rm -rf lib && tsc"
},
"keywords": [],
"author": "Lynn Monson",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.2",
"fast-equals": "^2.0.3",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"tslint": "^6.1.3",
"typescript": "^4.4.4"
},
"dependencies": {
"@types/throttle-debounce": "^2.1.0",
"hill-chart": "^1.3.1",
"throttle-debounce": "^3.0.1"
},
"jest": {
"extensionsToTreatAsEsm": [
".ts"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
}
}