-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·76 lines (76 loc) · 2.11 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
70
71
72
73
74
75
76
{
"name": "hswidget",
"sideEffects": false,
"main": "./bin/cjs/index.js",
"module": "./bin/esm/index.js",
"files": [
"bin/"
],
"types": "./bin/esm/index.d.ts",
"type": "module",
"scripts": {
"dev": "grunt --gruntfile Gruntfile.cjs dev",
"build": "grunt --gruntfile Gruntfile.cjs build",
"grunt": "grunt --gruntfile Gruntfile.cjs",
"prepublishOnly": "npm run grunt publish",
"postpublish": "npm version patch"
},
"version": "2.5.15",
"keywords": [
"UI",
"widgets",
"es6"
],
"description": "Helpful Scripts UI widgets",
"homepage": "https://helpfulscripts.github.io/hsWidget/#!/api/hsWidget/0",
"author": {
"name": "masterscripter",
"email": "helpfulscripts@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/HelpfulScripts/hsWidget.git"
},
"engines": {
"node": ">= 14.2.0"
},
"plugins": [
"plugins/markdown"
],
"devDependencies": {
"@types/d3": "^5.7.2",
"@types/node": "14.0.x",
"@types/mithril": "2.0.x",
"@types/jest": "26.x.x",
"@types/showdown": "^1.9.3",
"grunt": "1.3.x",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-less": "^2.0.0",
"grunt-contrib-uglify": "^4.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-ts": "^6.0.0-beta.22",
"@vamship/grunt-typedoc": "^1.7.3",
"grunt-webpack": "4.x.x",
"hsnode": "2.x.x",
"coveralls": "3.1.x",
"grunt-coveralls": "^2.0.0",
"mithril-query": "^3.0.1",
"jest": "^26.x.x",
"ts-jest": "26.x.x",
"eslint": "^6.8.0",
"typedoc": "^0.17.6",
"typescript": "4.x.x",
"terser-webpack-plugin": "5.x.x",
"webpack": "5.x.x"
},
"dependencies": {
"@mdi/js": "^5.x.x",
"d3": "6.x.x",
"mithril": "^2.0.4",
"hsutil": "3.x.x",
"showdown": "^1.9.1"
}
}