-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
98 lines (98 loc) · 2.35 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "pkg-usage",
"version": "0.3.1",
"description": "Npm package usage metrics",
"main": "dist/src/index.js",
"files": [
"src",
"dist",
"example",
"scripts"
],
"keywords": [
"node",
"npm",
"package",
"usage",
"resources"
],
"bin": {
"pkg-usage": "./scripts/pkg-usage.js"
},
"repository": "https://github.com/luistak/pkg-usage.git",
"bugs": {
"url": "https://github.com/luistak/pkg-usage/issues"
},
"homepage": "https://github.com/luistak/pkg-usage",
"author": "Luis Takahashi <[email protected]>",
"license": "MIT",
"private": false,
"devDependencies": {
"@tsconfig/node14": "^1.0.1",
"@types/faker": "^5.5.8",
"@types/jest": "^26.0.24",
"@types/js-yaml": "^4.0.2",
"@types/node": "^16.4.2",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.31.0",
"faker": "^5.5.3",
"jest": "^27.0.6",
"prettier": ">=2",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"semantic-release": "^18.0.0"
},
"scripts": {
"commit": "cz",
"preexample": "yarn build",
"example": "cd ./example && node ../scripts/pkg-usage.js",
"lint": "eslint . --cache --fix --ext .ts,.tsx",
"format": "prettier --loglevel warn --write \"**/*.{ts,tsx,css,md}\"",
"test:ci": "CI=true yarn test:coverage",
"test:jest": "NODE_OPTIONS=--max_old_space_size=4096 jest -w=2",
"test:watch": "yarn test --watch",
"test:coverage": "yarn test --coverage",
"test": "yarn test:jest",
"prebuild": "rm -Rf dist",
"build": "tsc",
"prerelease": "cz bump",
"release": "npm publish",
"semantic-release": "semantic-release"
},
"jest": {
"testPathIgnorePatterns": [
"/dist/",
"/node_modules/",
"/__tests__/utils.ts"
],
"coveragePathIgnorePatterns": [
"/__tests__/utils.ts"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"modulePathIgnorePatterns": [
"__mocks__"
]
},
"dependencies": {
"commander": "^8.2.0",
"pkg-up": "^3.1.0",
"ts-morph": "^14.0.0"
},
"release": {
"branches": [
"main",
"next"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}