forked from xavdid/typed-install
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.8 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
{
"name": "typed-install",
"version": "1.0.6",
"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": "2.4.1",
"commander": "2.20.0",
"debug": "4.1.1",
"got": "9.6.0",
"lodash": "4.17.13",
"mz": "2.7.0",
"ora": "3.4.0",
"pkg-dir": "4.2.0",
"shelljs": "0.7.8",
"update-notifier": "3.0.0"
},
"devDependencies": {
"@types/debug": "4.1.5",
"@types/got": "^9.0.0",
"@types/jest": "^22.2.2",
"@types/lodash": "^4.14.117",
"@types/mock-fs": "^3",
"@types/mz": "0.0.32",
"@types/node": "12.12.5",
"@types/shelljs": "0.7.6",
"@types/update-notifier": "2.5.0",
"jest": "^24.8.0",
"mock-fs": "^4.10.0",
"ts-jest": "^24.0.0",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.6.0",
"typescript": "3.6.4"
},
"scripts": {
"test": "jest",
"lint": "tslint -p tsconfig.json -c tslint.json",
"predeploy": "rm -rf lib && npm rum build",
"deploy": "npx np",
"build": "tsc",
"release": "npx np",
"validate": "npm run test && npm run 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/index.d.ts"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}