forked from mrmgomes/boleto-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.64 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
{
"name": "boboleto",
"version": "1.1.0",
"repository": "https://github.com/eduardoborges/boboleto",
"description": "Um conjunto de funções para validar, converter, detectar boletos e cobranças.",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"engines": {
"node": ">=16"
},
"files": [
"src",
"dist"
],
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"prepare": "npm run build",
"test": "npm run test:lint && npm run test:unit && npm run test:build",
"test:unit": "jest ./src --passWithNoTests --verbose",
"test:build": "npm run build",
"test:lint": "npm run lint",
"lint": "eslint --ext js,ts src",
"lint:fix": "npm run lint -- --fix",
"prebuild": "rm -rf dist;"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.1",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "9.0.0",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "5.12.0",
"@typescript-eslint/parser": "5.12.0",
"eslint": "8.9.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-import": "2.25.4",
"jest": "27.5.1",
"microbundle": "0.14.2",
"semantic-release": "19.0.2",
"ts-jest": "^27.1.3",
"typescript": "4.5.5"
},
"jest": {
"preset": "ts-jest",
"verbose": true,
"testEnvironment": "node",
"testMatch": [
"<rootDir>/**/*.test.ts"
]
}
}