-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.6 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
{
"name": "@4success/nfse-campinas",
"description": "NFSe Campinas",
"version": "2.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"author": {
"name": "Renan William Alves de Paula",
"email": "[email protected]"
},
"repository": {
"url": "git+https://github.com/4success/nfse-campinas.git"
},
"scripts": {
"version": "yarn run format && git add -A src",
"prepare": "yarn run build",
"postversion": "git push && git push --tags",
"test": "jest",
"build": "tsc --emitDeclarationOnly && node esbuild.mjs",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json"
},
"files": [
"dist/**/*"
],
"directories": {
"test": "src/__tests__"
},
"keywords": [
"nfse campinas",
"nfse"
],
"devDependencies": {
"@tybys/cross-zip": "^3.1.0",
"@types/jest": "^29.0.0",
"@types/luxon": "^3.4.2",
"@types/node": "^18.19.31",
"@types/node-forge": "^1.3.11",
"@types/pem": "^1.14.4",
"@types/sha1": "^1.1.3",
"dotenv": "^16.0.0",
"esbuild": "^0.23.1",
"glob": "^8.0.3",
"jest": "^29.0.0",
"js-yaml": "^4.1.0",
"nock": "^13.2.4",
"prettier": "^2.4.1",
"puppeteer": "^10.1.0",
"ts-jest": "^29.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.0.0"
},
"dependencies": {
"axios": "^1.6.1",
"fast-xml-parser": "^4.2.5",
"luxon": "^3.4.4",
"node-forge": "^1.3.1",
"pem": "^1.14.8",
"sha1": "^1.1.1",
"soap": "^1.1.2",
"xml-crypto": "^6.0.0",
"xmlbuilder": "^15.1.1"
}
}