forked from mpgp/mpgp.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
166 lines (166 loc) · 4.39 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"version": "1.0.0",
"name": "mpgp",
"description": "MPGP Documentation",
"author": "loktionov129",
"license": "BSD-2-Clause",
"homepage": "https://github.com/mpgp/mpgp.github.io#readme",
"keywords": [
"documentation",
"rest-api-documentation",
"websocket-documentation"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mpgp/mpgp.github.io.git"
},
"bugs": {
"url": "https://github.com/mpgp/mpgp.github.io/issues"
},
"greenkeeper": {
"ignore": [
"@types/node",
"ts-node",
"typescript"
]
},
"commitlint": {
"extends": [
"./node_modules/@commitlint/config-conventional"
],
"rules": {
"scope-enum": [
2,
"always",
[
"core",
"main",
"shared",
"docs",
"spec"
]
],
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test"
]
]
}
},
"lint-staged": {
"*.ts": [
"ng lint spec",
"ng lint spec-e2e",
"git add"
],
"*.css": [
"yarn run lint:css",
"git add"
],
"*.scss": [
"yarn run lint:scss",
"git add"
]
},
"release": {
"npmPublish": false,
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/git",
"@semantic-release/github"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/git"
],
"success": [
"@semantic-release/github"
],
"fail": [
"@semantic-release/github"
]
},
"scripts": {
"build": "npm run clean:dist && ng build --prod",
"clean:dist": "rm -rf ./dist",
"clean:compodoc": "rm -rf ./compodoc",
"commitmsg": "commitlint -E GIT_PARAMS",
"compodoc": "yarn run clean:compodoc && ./node_modules/.bin/compodoc -d dist/compodoc -p tsconfig.json -n \"MPGP Documentation\"",
"lint": "ng lint",
"stylelint": "stylelint",
"lint:css": "stylelint --config src/.stylelintrc/app.json",
"lint:scss": "stylelint --syntax scss --config src/.stylelintrc/app.json",
"lint:css:all": "yarn run lint:css \"src/**/*.css\"",
"lint:scss:all": "yarn run lint:scss \"src/**/*.scss\"",
"ng": "ng",
"precommit": "lint-staged",
"start": "ng serve",
"static": "static ./dist",
"test": "echo Please use yarn run test:unit",
"test:unit": "CHROME_BIN=google-chrome CHROME_CANARY_BIN=google-chrome ng test --watch=false --code-coverage",
"test:e2e": "CHROME_BIN=google-chrome CHROME_CANARY_BIN=google-chrome ng e2e",
"ci:test": "CHROME_BIN=chromium-browser DISPLAY=:99.0 ng test --watch=false --code-coverage",
"ci:e2e": "CHROME_BIN=chromium-browser DISPLAY=:99.0 ng e2e"
},
"dependencies": {
"@angular/animations": "8.0.3",
"@angular/cdk": "8.0.1",
"@angular/common": "8.0.3",
"@angular/compiler": "8.0.3",
"@angular/core": "8.0.3",
"@angular/forms": "8.0.3",
"@angular/http": "7.2.15",
"@angular/material": "8.0.1",
"@angular/platform-browser": "8.0.3",
"@angular/platform-browser-dynamic": "8.0.3",
"@angular/router": "8.0.3",
"core-js": "3.1.4",
"rxjs": "6.5.2",
"stylelint": "10.1.0",
"stylelint-order": "3.0.0",
"zone.js": "0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.800.6",
"@angular/cli": "8.0.6",
"@angular/compiler-cli": "8.0.3",
"@angular/language-service": "8.0.3",
"@commitlint/cli": "8.0.0",
"@commitlint/config-conventional": "8.0.0",
"@commitlint/config-lerna-scopes": "8.0.0",
"@compodoc/compodoc": "1.1.9",
"@semantic-release/changelog": "3.0.4",
"@semantic-release/git": "7.0.16",
"@semantic-release/github": "5.4.2",
"@types/jasmine": "3.3.13",
"@types/jasminewd2": "2.0.6",
"@types/node": "12.0.10",
"codelyzer": "5.1.0",
"coveralls": "3.0.4",
"husky": "3.0.0",
"jasmine-core": "3.4.0",
"jasmine-spec-reporter": "4.2.1",
"karma": "4.1.0",
"karma-chrome-launcher": "2.2.0",
"karma-coverage-istanbul-reporter": "2.0.5",
"karma-jasmine": "2.0.1",
"karma-jasmine-html-reporter": "1.4.2",
"lint-staged": "9.0.0",
"protractor": "5.4.2",
"ts-node": "8.3.0",
"tslint": "5.18.0",
"typescript": "3.4.5"
}
}