-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
90 lines (90 loc) · 2.14 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
{
"name": "typed-install",
"version": "2.0.0",
"description": "Install packages and types in one fell swoop.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"repository": "xavdid/typed-install",
"bin": {
"typedi": "lib/cli.js"
},
"dependencies": {
"chalk": "4.1.0",
"commander": "6.2.0",
"debug": "4.3.1",
"got": "11.8.0",
"lodash": "^4",
"ora": "5.1.0",
"pkg-dir": "5.0.0",
"shelljs": "0.8.4",
"update-notifier": "5.0.1"
},
"devDependencies": {
"@types/debug": "4.1.5",
"@types/got": "^9.6.11",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.165",
"@types/mock-fs": "^4.13.0",
"@types/node": "14.14.9",
"@types/shelljs": "0.8.8",
"@types/update-notifier": "5.0.0",
"@typescript-eslint/eslint-plugin": "^4",
"@typescript-eslint/parser": "^4.4.1",
"eslint": "^7",
"eslint-config-prettier": "^6.13.0",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-config-xavdid": "^1.0.0",
"eslint-plugin-import": "^2",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-node": "^11",
"eslint-plugin-promise": "^4",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-standard": "^4",
"jest": "^26.6.3",
"mock-fs": "^4.13.0",
"ts-jest": "^26.4.4",
"typescript": "~4.1"
},
"scripts": {
"test": "jest",
"lint": "eslint src",
"predeploy": "rm -rf lib && yarn build",
"deploy": "npx np",
"build": "tsc",
"release": "npx np",
"validate": "yarn test && yarn lint"
},
"keywords": [
"typescript",
"types",
"npm",
"yarn",
"installing"
],
"author": "David Brownman <[email protected]> (https://davidbrownman.com)",
"license": "ISC",
"prettier": {
"semi": false,
"singleQuote": true
},
"files": [
"lib/*.js",
"lib/*.d.ts"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}