generated from adam-sokolowski/ts-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 1.83 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
68
69
70
71
{
"name": "@adso-ts/frontend-utils",
"version": "1.0.0",
"private": true,
"description": "Collection of front-end unil functions",
"repository": {
"type": "git",
"url": "[email protected]:adam-sokolowski/frontend-utils.git"
},
"workspaces": [
"packages/*"
],
"keywords": [
"ts",
"es6",
"commonjs",
"utils"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"typings": "./dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lerna:build": "lerna run build",
"lerna:publish": "lerna publish",
"lerna:upgrade": "lerna exec yarn upgrade",
"lerna:version": "lerna version",
"package:clear": "rimraf packages/**/dist",
"package:rebuild": "yarn package:clear && yarn lerna:build",
"package:githooks:reset": "rm -rf ./.git/hooks/* && rm -rf node_modules/husky && yarn install --check-files",
"source:lint": "eslint '*/**/*.ts' --fix",
"source:test": "jest --verbose",
"source:test:watch": "jest --watchAll",
"source:coverage-badges": "coverage-badges --save=coverage-badges"
},
"husky": {
"hooks": {
"pre-commit": [
"yarn source:lint"
],
"pre-push": [
"yarn source:test"
]
}
},
"author": "Adam Sokołowski <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@types/jest": "~26.0.10",
"@typescript-eslint/eslint-plugin": "~4.7.0",
"@typescript-eslint/parser": "~4.7.0",
"babel-jest": "^27.3.1",
"eslint": "~7.13.0",
"husky": "~4.2.5",
"jest": "~26.4.0",
"loader-utils": "^3.1.0",
"memfs": "^3.3.0",
"ts-jest": "~26.3.0",
"tslib": "~2.3.0",
"typescript": "~4.4.0",
"webpack": "^5.61.0"
},
"dependencies": {
"@adso-ts/badges": "^1.1.4",
"lerna": "^4.0.0"
}
}