empty project
Showing
- .editorconfig 12 additions, 0 deletions.editorconfig
- .eslintignore 1 addition, 0 deletions.eslintignore
- .eslintrc.js 26 additions, 0 deletions.eslintrc.js
- .gitignore 4 additions, 0 deletions.gitignore
- .gitlab-ci.yml 31 additions, 0 deletions.gitlab-ci.yml
- .prettierignore 1 addition, 0 deletions.prettierignore
- README.md 12 additions, 1 deletionREADME.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 3 additions, 0 deletionslint-staged.config.js
- package.json 39 additions, 0 deletionspackage.json
- src/index.ts 3 additions, 0 deletionssrc/index.ts
- tsconfig.json 10 additions, 0 deletionstsconfig.json
- yarn.lock 5077 additions, 0 deletionsyarn.lock
.editorconfig
0 → 100644
.eslintignore
0 → 100644
.eslintrc.js
0 → 100644
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
.prettierignore
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/lib-pdf", | ||
"author": "Veriegn AG", | ||
"description": "Vereign PDF parser library", | ||
"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", | ||
"eslint-config-prettier": "^8.3.0", | ||
"eslint-plugin-prettier": "^3.4.0", | ||
"husky": "^4.2.5", | ||
"jest": "^26.4.2", | ||
"lint-staged": "^10.2.13", | ||
"prettier": "^2.1.1", | ||
"typescript": "^4.0.2" | ||
}, | ||
"scripts": { | ||
"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