currency-in-words
Advanced tools
Comparing version 3.0.0 to 3.0.1
{ | ||
"name": "currency-in-words", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"description": "A light-weight, fast and efficient lib that converts currency or any numbers to corresponding words", | ||
@@ -8,4 +8,4 @@ "main": "dist/index.js", | ||
"test": "jest", | ||
"build": "tsc --project tsconfig.json", | ||
"clean": "tsc --project --clean tsconfig.json" | ||
"build": "npm run clean && tsc --project tsconfig.json", | ||
"clean": "rm -rf dist" | ||
}, | ||
@@ -12,0 +12,0 @@ "repository": { |
{ | ||
"extends": "./tsconfig.json", | ||
"exclude": [ | ||
"__tests__/**/*.spec.ts", | ||
"__tests__/**/*.test.ts", | ||
"src/**/*.test.ts" | ||
"__tests__", | ||
"dist", // Exclude the build output directory | ||
"**/*.spec.ts", | ||
"**/*.test.*" | ||
] | ||
} |
@@ -5,9 +5,3 @@ { | ||
"__tests__", | ||
"./dist/**/*", | ||
"__tests__/**/*.spec.ts", | ||
"__tests__/**/*.test.*", | ||
"node_modules", | ||
"./node_modules", | ||
"./node_modules/*", | ||
"./node_modules/@types/node/index.d.ts", | ||
"dist", // Exclude the build output directory | ||
], | ||
@@ -14,0 +8,0 @@ "compilerOptions": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
77376
1429