-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.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
{
"name": "md2poui",
"version": "4.0.0",
"description": "Conversor de arquivos markdown para páginas Angular com suporte ao PO-UI",
"main": "index.js",
"scripts": {
"pretest": "npx gulp pretest && npx tsc --p tsconfig.app.json",
"test": "npx mocha ./test",
"prebuild": "npx gulp -- prebuild",
"build": "npx tsc --p tsconfig.app.json",
"build:prod": "npm run build && npx gulp uglify",
"postbuild": "npx gulp -- postbuild && npm pack ./dist"
},
"bin": "bin/md2poui.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/totvs/md2poui.git"
},
"keywords": [
"totvs",
"markdown",
"angular",
"thf",
"po-ui"
],
"author": "Rubens Dos Santos Filho",
"license": "MIT",
"bugs": {
"url": "https://github.com/totvs/md2poui/issues"
},
"homepage": "https://github.com/totvs/md2poui#readme",
"dependencies": {
"array.prototype.flatmap": "~1.3.1",
"defaults": "^1.0.4",
"marked": "^4.2.12",
"mustache": "^4.2.0",
"node-emoji": "^1.11.0",
"sanitize-html": "^2.8.1",
"typescript": "^4.9.4",
"uuid": "^9.0.0",
"yargs": "^17.6.2"
},
"devDependencies": {
"@types/array.prototype.flatmap": "^1.2.2",
"@types/defaults": "^1.0.3",
"@types/marked": "^4.0.8",
"@types/mocha": "^10.0.1",
"@types/mustache": "^4.2.2",
"@types/node": "^18.11.18",
"@types/node-emoji": "^1.8.2",
"@types/sanitize-html": "^2.6.2",
"@types/uuid": "^8.3.4",
"@types/yargs": "^17.0.20",
"del": "^5.1.0",
"gulp": "^4.0.2",
"gulp-uglify-es": "^3.0.0",
"mocha": "^10.2.0"
}
}