-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.87 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
{
"name": "@rambler-tech/licenselint",
"version": "0.0.0",
"description": "A linter for NPM package licenses to avoid dependencies that not compatible with license of your software",
"bin": {
"licenselint": "dist/cli.js"
},
"author": "Andrey Polischuk <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/rambler-digital-solutions/licenselint.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"lint": "eslint '**/*.{js,ts}'",
"format": "prettier --write **/*.{js,ts} && eslint '**/*.{js,ts}' --fix",
"licenselint": "ts-node src/cli.ts",
"typecheck": "tsc --noEmit",
"release": "semantic-release",
"prepare": "[ -n \"$CI\" ] && exit 0 || husky install"
},
"dependencies": {
"chalk": "^4",
"debug": "^4.3.4",
"license-checker": "^25.0.1",
"log-symbols": "^4",
"meow": "^9",
"numd": "^3.1.0",
"string-width": "^4"
},
"devDependencies": {
"@commitlint/cli": "^17.4.1",
"@commitlint/config-conventional": "^17.4.0",
"@rambler-tech/eslint-config": "^0.10.4",
"@rambler-tech/licenselint-config": "^0.0.2",
"@rambler-tech/prettier-config": "^0.1.0",
"@rambler-tech/ts-config": "^0.0.2",
"@types/debug": "^4.1.7",
"@types/jest": "^29.2.5",
"@types/license-checker": "^25.0.3",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.2",
"semantic-release": "19",
"ts-jest": "^29.0.4",
"typescript": "^4.9.4"
}
}