-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.59 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "tmwindow",
"version": "0.0.0-dev",
"description": "Library for in-site JavaScript windows",
"keywords": [
"typescript",
"frontend",
"commonjs",
"window",
"draggable"
],
"main": "src/ts/index.js",
"types": "src/ts/index.d.ts",
"style": "dist/css/TmWindow.css",
"sass": "src/scss/main.scss",
"author": "Daniel Tanuel Schuster <tanuel.mategi@gmail.com> (https://tanuel.gitlab.io)",
"license": "MIT",
"repository": "gitlab:Tanuel/tmwindow",
"homepage": "https://tanuel.gitlab.io/tmwindow",
"bugs": {
"url": "https://gitlab.com/Tanuel/tmwindow/issues"
},
"resolutions": {
"marked": "0.8.0",
"handlebars": "4.5.3"
},
"dependencies": {
"tmutil": "^1.1.3"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/gitlab": "^4.1.0",
"@semantic-release/npm": "^5.1.4",
"@semantic-release/release-notes-generator": "^7.3.5",
"@types/jest": "^24.0.11",
"browserify": "^16.2.3",
"grunt": "^1.0.3",
"grunt-browserify": "^5.3.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-connect": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-sass": "^3.0.2",
"grunt-ts": "^6.0.0-beta.22",
"grunt-typedoc": "^0.2.4",
"jest": "^24.9.0",
"sass": "^1.24.0",
"semantic-release": "^15.14.0",
"ts-jest": "^24.0.0",
"tsify": "^4.0.1",
"tslint": "^5.13.1",
"typedoc": "^0.15.6",
"typescript": "~3.7.4",
"watchify": "^3.11.1"
},
"scripts": {
"lint": "tslint --project ./",
"clean": "grunt clean",
"dev": "grunt build:dev",
"test": "jest",
"build": "grunt build",
"build:dist": "grunt build:dist",
"build:docs": "grunt build:docs",
"serve": "grunt serve",
"release": "semantic-release",
"release:dry": "semantic-release --dry-run"
},
"release": {
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/gitlab",
"@semantic-release/npm"
],
"analyzeCommits": {
"releaseRules": [
{
"type": "MAJOR",
"release": "major"
},
{
"type": "MINOR",
"release": "minor"
},
{
"type": "FEATURE",
"release": "minor"
},
{
"type": "BUGFIX",
"release": "patch"
},
{
"type": "SECURITY",
"release": "patch"
},
{
"type": "PATCH",
"release": "patch"
}
]
}
}
}