This repository has been archived by the owner on Feb 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.84 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
{
"name": "mvw-creator",
"version": "1.4.0",
"description": "Module to generate a static website using pug, scss and TypeScript.",
"license": "MIT",
"author": {
"name": "tiliavir",
"email": "tiliavir@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tiliavir/mvw-creator.git"
},
"bugs": {
"url": "https://github.com/tiliavir/mvw-creator/issues"
},
"homepage": "https://github.com/tiliavir/mvw-creator#readme",
"devDependencies": {
"@types/gulp": "^4.0.8",
"@types/gulp-load-plugins": "0.0.32",
"@types/jasmine": "3.6.3",
"@types/marked": "1.2.2",
"@types/node": "14.14.25",
"@types/strip-json-comments": "3.0.0",
"@types/vinyl": "2.0.4",
"jasmine": "3.6.4",
"tslint": "6.1.2",
"typescript": "4.1.3",
"typescript-json-schema": "0.48.0"
},
"dependencies": {
"app-module-path": "2.2.0",
"autoprefixer": "10.2.4",
"copyfiles": "2.4.1",
"gulp": "4.0.2",
"gulp-data": "1.3.1",
"gulp-flatten": "0.4.0",
"gulp-htmlmin": "5.0.1",
"gulp-load-plugins": "2.0.6",
"gulp-plumber": "1.2.1",
"gulp-pug": "4.0.1",
"gulp-rename": "2.0.0",
"gulp-replace": "1.0.0",
"gulp-sitemap": "8.0.0",
"jsonschema": "1.4.0",
"jstransformer-marked": "1.0.3",
"marked": "1.2.9",
"moment": "2.29.1",
"mvw-navigation": "3.1.3",
"mvw-search-index": "2.2.5",
"pug": "3.0.0",
"pug-lint": "2.6.0",
"strip-json-comments": "3.1.1"
},
"scripts": {
"test": "tslint --project ./ts && npm run build && tsc -p ./spec && jasmine",
"postbuild": "typescript-json-schema ./ts/tsconfig.json ICreatorConfig --titles --required --excludePrivate --noExtraProps > ./js/creator-config-schema.json",
"build": "tsc -p ./ts"
},
"bin": {
"mvwc-lint": "./js/cli/lint.js",
"mvwc": "./js/cli/generator.js"
}
}