-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·71 lines (71 loc) · 1.89 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
{
"name": "hslayout",
"sideEffects": [
"./bin/view/PillaredLayouter.js",
"./bin/view/TileLayouter.js"
],
"main": "./bin/cjs/index.js",
"module": "./bin/esm/index.js",
"files": [
"./"
],
"types": "./bin/esm/index.d.ts",
"type": "module",
"scripts": {
"grunt": "grunt --gruntfile Gruntfile.cjs",
"prepublishOnly": "npm run grunt",
"postpublish": "npm version patch"
},
"version": "2.5.2",
"keywords": [
"layout",
"UI",
"es6",
"mithril"
],
"description": "Helpful Scripts UI layout utility",
"homepage": "http://helpfulscripts.github.io/hsLayout/#!/api/hsLayout/0",
"author": {
"name": "masterscripter",
"email": "helpfulscripts@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/HelpfulScripts/hsLayout.git"
},
"engines": {
"node": ">= 12.14.0"
},
"plugins": [
"plugins/markdown"
],
"devDependencies": {
"@types/node": "14.0.x",
"@types/mithril": "2.0.x",
"@types/jest": "26.x.x",
"grunt": "1.1.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": "^3.1.3",
"coveralls": "3.1.x",
"grunt-coveralls": "^2.0.0",
"jest": "26.x.x",
"ts-jest": "26.x.x",
"eslint": "^6.8.0",
"typedoc": "^0.17.6",
"typescript": "3.x.x",
"terser-webpack-plugin": "3.0.x",
"webpack": "^4.43.x"
},
"dependencies": {
"hsutil": "3.x.x",
"mithril": "^2.0.4"
}
}