-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.62 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
70
71
72
73
74
75
76
77
78
79
{
"name": "@sacfiscal/fiscaljs",
"version": "1.0.6",
"description": "Biblioteca para cálculos fiscais na NFe/NFCe",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/sacfiscal/fiscaljs.git",
"author": "Cristiano Junior <[email protected]>",
"license": "MIT",
"private": false,
"files": [
"src/**/*",
"dist/**/*",
"package.json"
],
"scripts": {
"validate": "yarn build && yarn format && yarn lint:fix && yarn test",
"format": "prettier --write --config .prettierrc.cjs '**/*.{cjs,js,ts,jsx,tsx,json,css,scss,md}'",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint ./src --ext .js,.jsx,.ts,.tsx --fix",
"build": "tsc && tsc-alias",
"clean": "rimraf ./dist",
"release": "release-it",
"test": "ts-node test",
"test:watch": "ts-node test --watch",
"test:watchall": "ts-node test --watchAll",
"test:cov": "ts-node test --coverage",
"test:ci": "ts-node test --coverage"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@release-it/conventional-changelog": "^5.1.1",
"@types/jest": "^29.5.5",
"@types/node": "^20.8.6",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-n": "15.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "6.0.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"release-it": "^15.10.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsc": "^2.0.4",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.6.4"
},
"release-it": {
"git": {
"commitMessage": "release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": false
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
}
}