This repository has been archived by the owner on Mar 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.55 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
{
"name": "@pnpm/git-resolver",
"version": "1.0.1",
"description": "Resolver for git-hosted packages",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"engines": {
"node": ">=6"
},
"scripts": {
"lint": "tslint -c tslint.json --project .",
"tsc": "rimraf lib && tsc",
"test": "npm run lint && preview && ts-node test --type-check && mos t",
"md": "mos",
"prepublishOnly": "npm run tsc",
"fix": "tslint -c tslint.json --project . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pnpm/git-resolver.git"
},
"keywords": [
"pnpm",
"resolver",
"npm"
],
"author": "Zoltan Kochan <z@kochan.io> (https://www.kochan.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/git-resolver/issues"
},
"homepage": "https://github.com/pnpm/git-resolver#readme",
"dependencies": {
"@pnpm/resolver-base": "^2.0.0",
"@types/node": "^10.0.6",
"@types/node-fetch": "^2.1.6",
"@types/semver": "^5.5.0",
"graceful-git": "^2.0.0",
"hosted-git-info": "^2.7.0",
"node-fetch": "^2.3.0",
"normalize-ssh": "^1.0.0",
"semver": "^5.5.0"
},
"devDependencies": {
"@types/tape": "^4.2.31",
"mos": "^2.0.0-alpha.3",
"mos-plugin-readme": "^1.0.4",
"package-preview": "^2.0.0",
"rimraf": "^2.6.2",
"tape": "^4.8.0",
"ts-node": "^8.0.2",
"tslint": "^5.8.0",
"typescript": "^3.0.0"
},
"mos": {
"plugins": [
"readme"
],
"installation": {
"useShortAlias": true
}
}
}