-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.43 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.43 KB
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
{
"name": "minstall",
"version": "4.0.1",
"description": "local module installer",
"main": "build/minstall.js",
"bin": "build/minstall.js",
"scripts": {
"build": "rimraf build && tsc",
"lint": "eslint --fix ./**/*.ts"
},
"keywords": [
"install",
"minstall",
"postinstall",
"module",
"modules",
"dependencies",
"require",
"symlink"
],
"author": "Heiko Mathes <heiko.mathes@gmail.com>",
"maintainers": [
"Heiko Mathes <heiko.mathes@gmail.com>"
],
"contributors": [
"5Minds IT-Solutions GmbH & Co. KG <info@5minds.de>",
"Paul Heidenreich <paul.heidenreich@5minds.de>"
],
"license": "MIT",
"homepage": "http://minstall.io",
"bugs": {
"url": "https://github.com/heikomat/minstall/issues",
"email": "heiko.mathes@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/heikomat/minstall.git"
},
"dependencies": {
"fs-extra": "^8.1.0",
"minimatch": "^3.0.4",
"semver": "^6.3.0",
"semver-intersect": "^1.4.0",
"triple-beam": "^1.3.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/node": "^9.4.7",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"eslint-config-5minds-typescript": "^2.0.0",
"eslint-plugin-6river": "^1.0.6",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-no-null": "^1.0.2",
"rimraf": "^2.6.2",
"typescript": "^3.6.3"
}
}