-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 977 Bytes
/
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
{
"name": "typac",
"version": "0.1.11",
"description": "cli wrapper over npm and yarn for installing npm packages along with corresponding typings",
"keywords": [
"cli",
"typescript",
"typings",
"install"
],
"repository": "[email protected]:ewgenius/typac.git",
"author": "Evgeniy Khramkov <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rm -rf build && tsc -p ./",
"test": "jest",
"lint": "eslint ./src/*",
"e2e": "sh tests/e2e.sh"
},
"bin": {
"typac": "./bin/typac.js"
},
"files": [
"bin",
"build",
"LICENSE.md",
"package.json",
"README.md"
],
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"eslint": "^7.5.0",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"typescript": "^3.9.7"
},
"dependencies": {
"commander": "^6.0.0"
}
}