-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.39 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
{
"name": "ts-package-scope-plugin",
"version": "0.0.0-semantic-release",
"license": "MIT",
"description": "TypeScript Language Service Plugin for creating package scope.",
"keywords": [
"typescript",
"scope",
"language service",
"package",
"encapsulation",
"plugin"
],
"author": "pawfa fajfer.pawel@gmail.com",
"repository": {
"type": "git",
"url": "https://github.com/pawfa/ts-package-scope-plugin.git"
},
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "jest",
"lint": "eslint . --ext .ts --max-warnings 0",
"prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\""
},
"peerDependencies": {
"typescript": "~4.6.3"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/micromatch": "^4.0.2",
"@types/node": "^16.0.14",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.4.1",
"prettier": "2.6.2",
"semantic-release": "^19.0.2",
"ts-jest": "^27.1.4",
"typescript": "~4.6.3"
},
"dependencies": {
"micromatch": "^4.0.5"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}