-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.64 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
{
"name": "grunt-nomnoml",
"description": "Grunt task to generate images from nomnoml diagram sources",
"version": "2.1.0",
"homepage": "https://github.com/prantlf/grunt-nomnoml#readme",
"author": {
"name": "Ferdinand Prantl",
"email": "prantlf@gmail.com",
"url": "http://prantl.tk"
},
"repository": {
"type": "git",
"url": "https://github.com/prantlf/grunt-nomnoml.git"
},
"bugs": {
"url": "https://github.com/prantlf/grunt-nomnoml/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/prantlf/grunt-nomnoml/blob/master/LICENSE"
}
],
"engines": {
"node": ">=12"
},
"files": [
"tasks"
],
"scripts": {
"test": "grunt",
"cover": "grunt instrument && GRUNT_NOMNOML_COVERAGE=1 grunt"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"failComment": false
}
],
"@semantic-release/git"
]
},
"dependencies": {
"nomnoml-cli": "^3.1.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"grunt": "~1.4.1",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-nodeunit": "^4.0.0",
"grunt-coveralls": "^2.0.0",
"grunt-eslint": "^24.0.0",
"grunt-istanbul": "^0.8.0",
"load-grunt-tasks": "^5.1.0",
"time-grunt": "^2.0.0"
},
"keywords": [
"gruntplugin",
"grunt",
"nomnoml",
"uml",
"image",
"generate"
]
}