-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
55 lines (55 loc) · 1.41 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
{
"name": "types-installer",
"version": "1.6.4",
"description": "Installs @types for your existing dependencies",
"main": "./actions",
"author": "nfour <[email protected]>",
"license": "MIT",
"keywords": [
"typescript",
"types",
"typings",
"install",
"cli"
],
"bin": {
"types-installer": "./bin/types-installer.js"
},
"repository": {
"type": "git",
"url": "https://github.com/nfour/types-installer"
},
"scripts": {
"test": "jest",
"lint": "tslint -p tsconfig.json",
"coverage": "jest --coverage",
"release": "cd dist && npm publish",
"build": "./scripts/build",
"build:windows": "ts-node ./scripts/build.ts",
"preversion": "yarn lint && yarn build && yarn coverage",
"preversion:windows": "yarn lint && yarn build:windows && yarn coverage"
},
"dependencies": {
"bluebird": "^3.5.0",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"execa": "^0.6.3",
"inquirer": "^3.0.6"
},
"devDependencies": {
"@types/bluebird": "^3.5.2",
"@types/chalk": "^0.4.31",
"@types/commander": "^2.9.0",
"@types/inquirer": "^0.0.33",
"@types/jest": "^21.1.8",
"@types/node": "^8.0.53",
"@types/typescript": "^2.0.0",
"jest": "^21.2.1",
"ts-jest": "^21.2.3",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"tslint-config-temando": "^1.5.11",
"tslint-eslint-rules": "^4.0.0",
"typescript": "3.3"
}
}