-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
65 lines (65 loc) · 1.62 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
{
"name": "pkg-install",
"version": "1.0.0",
"description": "A wrapper making installation of Node.js packages from code easier",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"prepare": "npm run build",
"start": "npm run dev",
"dev": "tsc --watch",
"build": "tsc",
"commit": "git-cz",
"docs": "typedoc --options typedoc.json",
"contrib:add": "all-contributors add",
"contrib:gen": "all-contributors generate",
"pretest": "npm run build",
"test": "jest"
},
"homepage": "https://pkg-install.dkundel.com/",
"keywords": [
"npm",
"yarn",
"install",
"cli",
"script"
],
"author": "Dominik Kundel <[email protected]> (https://dkundel.com)",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.6",
"all-contributors-cli": "^6.1.1",
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"jest": "^24.1.0",
"ora": "^3.1.0",
"ts-jest": "^24.0.0",
"typedoc": "^0.14.2",
"typedoc-plugin-external-module-name": "^2.0.0",
"typedoc-plugin-internal-external": "^2.0.1",
"typescript": "^3.3.3"
},
"bugs": {
"url": "https://github.com/dkundel/pkg-install/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/dkundel/pkg-install.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@types/execa": "^0.9.0",
"@types/node": "^11.9.4",
"execa": "^1.0.0"
},
"files": [
"lib/!(__tests__)",
"LICENSE",
"README.md"
]
}