-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (72 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (72 loc) · 2.36 KB
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": "dwncrwlr",
"version": "0.10.0",
"description": "Static site generator which generates EJS suppored HTML files from Markdown, HTML and EJS input.",
"main": "./dwncrwlr.js",
"bin": {
"crwldwn": "./dwncrwlr.js"
},
"scripts": {
"build": "rm -rf dist/ && npm run styles && gulp && npm run clean-package",
"build:qa": "npm test && npm run tslint && npm run styles && gulp && npm run clean-package",
"dev:start": "node dist/dwncrwlr.js dwncrwlr.config.json",
"clean-package": "node ./buildtools/cleanup-package.js",
"dev:js": "npm run build && npm run dwncrwlr:js",
"dev:ts": "npm run styles && npm run dwncrwlr:ts",
"styles": "node-sass ./styles/scss/index.scss ./styles/css/styles.css",
"styles:assets": "node-sass ./styles/scss/index.scss ./assets/css/styles.css",
"dwncrwlr:js": "npm run styles:assets && node ./dist/dwncrwlr.js",
"dwncrwlr:ts": "ts-node ./src/dwncrwlr.ts",
"watch": "watch 'npm run build' ./src",
"tsc": "tsc",
"tsc:watch": "tsc -w",
"serve": "serve ./publish",
"test": "jest",
"test:jasmine": "ts-node node_modules/jasmine/bin/jasmine",
"tslint": "tslint -p ./tsconfig.json -c ./tslint.json"
},
"keywords": [],
"author": "Christian Silfang (comcy)",
"license": "MIT",
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/jasmine": "^3.3.1",
"@types/jest": "^24.0.6",
"@types/node": "^10.12.9",
"cross-env": "^5.2.0",
"del": "^3.0.0",
"fs": "0.0.1-security",
"gulp": "^4.0.2",
"gulp-sourcemaps": "^3.0.0",
"gulp-tslint": "^8.1.3",
"gulp-typescript": "^6.0.0-alpha.1",
"jasmine": "^3.3.1",
"jasmine-core": "^3.3.0",
"jasmine-reporters": "^2.3.2",
"jasmine-spec-reporter": "^4.2.1",
"jasmine-trx-reporter": "^2.2.2",
"jasmine-ts": "^0.3.0",
"jest": "^29.5.0",
"jest-html-reporter": "^3.10.0",
"nlf": "^2.0.1",
"node-sass": "^9.0.0",
"serve": "^14.2.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tslint": "^5.11.0",
"typescript": "^5.0.4",
"watch": "^0.13.0"
},
"dependencies": {
"ejs": "^3.1.9",
"front-matter": "^4.0.2",
"fs-extra": "^11.1.1",
"glob": "^10.2.6",
"minimist": "^1.2.0",
"moment": "^2.29.4",
"npm": "^9.6.7",
"showdown": "^2.1.0"
},
"repository": "https://github.com/comcy/DWNCRWLR.git"
}