-
- Downloads
Initial
Showing
- .editorconfig 12 additions, 0 deletions.editorconfig
- .eslintignore 1 addition, 0 deletions.eslintignore
- .eslintrc.js 25 additions, 0 deletions.eslintrc.js
- .gitignore 4 additions, 0 deletions.gitignore
- .prettierignore 1 addition, 0 deletions.prettierignore
- README.md 1 addition, 0 deletionsREADME.md
- __tests__/index.test.ts 9 additions, 0 deletions__tests__/index.test.ts
- babel.config.js 13 additions, 0 deletionsbabel.config.js
- jest.config.js 190 additions, 0 deletionsjest.config.js
- lint-staged.config.js 4 additions, 0 deletionslint-staged.config.js
- package.json 38 additions, 0 deletionspackage.json
- src/index.ts 3 additions, 0 deletionssrc/index.ts
- tsconfig.json 10 additions, 0 deletionstsconfig.json
- yarn.lock 0 additions, 0 deletionsyarn.lock
.editorconfig
0 → 100644
.eslintignore
0 → 100644
.eslintrc.js
0 → 100644
.gitignore
0 → 100644
.prettierignore
0 → 100644
README.md
0 → 100644
__tests__/index.test.ts
0 → 100644
babel.config.js
0 → 100644
jest.config.js
0 → 100644
lint-staged.config.js
0 → 100644
package.json
0 → 100644
{ | ||
"name": "@vereign/mime-verifier", | ||
"author": "Igor Markin <igor.markin@vereign.com>", | ||
"description": "A library that handles verification of MIME messages", | ||
"version": "1.0.0", | ||
"license": "MIT", | ||
"main": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"devDependencies": { | ||
"@babel/core": "^7.11.4", | ||
"@babel/preset-env": "^7.11.0", | ||
"@babel/preset-typescript": "^7.10.4", | ||
"@typescript-eslint/eslint-plugin": "^3.10.1", | ||
"@typescript-eslint/parser": "^3.10.1", | ||
"babel-eslint": "^10.1.0", | ||
"babel-jest": "^26.3.0", | ||
"eslint": "^7.7.0", | ||
"husky": "^4.2.5", | ||
"jest": "^26.4.2", | ||
"lint-staged": "^10.2.13", | ||
"prettier": "^2.1.1", | ||
"typescript": "^4.0.2" | ||
}, | ||
"scripts": { | ||
"prepare": "yarn build", | ||
"start": "tsc --watch", | ||
"build": "tsc", | ||
"test": "jest", | ||
"test:watch": "jest --watch", | ||
"eslint": "eslint src/" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "lint-staged" | ||
} | ||
}, | ||
"dependencies": {} | ||
} |
src/index.ts
0 → 100644
tsconfig.json
0 → 100644
yarn.lock
0 → 100644
This diff is collapsed.
Please register or sign in to comment