-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.79 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
{
"name": "@designliquido/lmht-js",
"version": "0.5.0",
"description": "Biblioteca de transformação de documentos LMHT para HTML em JavaScript",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/DesignLiquido/lmht-js.git"
},
"scripts": {
"copiar-arquivos": "yarn copy-files-from-to",
"empacotar": "yarn rimraf ./dist && tsc && yarn copiar-arquivos",
"publicar-npm": "npm publish ./dist --access public",
"testes-unitarios": "jest --coverage",
"testes-unitarios:insignias": "yarn jest-coverage-badges --output ./recursos/imagens"
},
"author": "Leonel Sanches da Silva",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"jsdom": "^21.1.1",
"xslt-processor": "^3.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/node": "^18.11.18",
"copy-files-from-to": "^3.6.0",
"copyfiles": "^2.4.1",
"jest": "^29.6.4",
"jest-coverage-badges": "^1.1.2",
"release-it": "^15.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"copyFiles": [
{
"from": "LICENSE",
"to": "dist/LICENSE"
},
{
"from": "especificacao/lmht.xslt",
"to": "dist/especificacao/lmht.xslt"
},
{
"from": "especificacao/lmht10.xslt",
"to": "dist/especificacao/lmht10.xslt"
},
{
"from": "especificacao/lmht-reverso.xslt",
"to": "dist/especificacao/lmht-reverso.xslt"
},
{
"from": "especificacao/lmht-reverso-xml10.xslt",
"to": "dist/especificacao/lmht-reverso-xml10.xslt"
},
{
"from": "package.json",
"to": "dist/package.json"
},
{
"from": "README.md",
"to": "dist/README.md"
}
]
}