-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.06 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
{
"name": "boilerplate",
"version": "1.0.0",
"description": "This project aims to generate library boilerplate (using rollup and typescript) so that I can start building my own libraries right away.",
"keywords": [],
"homepage": "https://github.com/teixeiravictor/boilerplate-lib#readme",
"bugs": {
"url": "https://github.com/teixeiravictor/boilerplate-lib/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teixeiravictor/boilerplate-lib.git"
},
"license": "",
"author": {
"name": "[email protected]"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"test": "jest src/ --no-cache",
"test:coverage": "jest --coverage src/ --no-cache",
"prepare": "husky install",
"semantic-release": "semantic-release"
},
"lint-staged": {
"**/*": "run-p prettier-format commitmsg"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@jest/globals": "^28.1.1",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-typescript": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"jest": "^28.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-esbuild": "^4.9.1",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^19.0.3",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1"
},
"dependencies": {
"@babel/runtime": "^7.18.3",
"tslib": "^2.4.0"
}
}