-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.72 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
67
68
69
70
71
72
73
74
75
{
"name": "pko",
"version": "0.0.8",
"description": "Run npm commands using a local registry overlay",
"license": "Apache-2.0",
"homepage": "https://github.com/RomainMuller/pko",
"bugs": "https://github.com/RomainMuller/pko/issues",
"repository": {
"type": "git",
"url": "https://github.com/RomainMuller/pko.git"
},
"author": {
"name": "Romain Marcadier-Muller",
"url": "https://github.com/RomainMuller"
},
"keywords": [
"npm",
"local",
"override",
"overlay"
],
"bin": {
"pko": "bin/pko"
},
"engines": {
"node": ">=12.4.0"
},
"scripts": {
"build": "tsc --build && tslint -p .",
"build:watch": "tsc --build --watch",
"lint": "tslint -p . --force",
"prepack": "node ./tools/generate-authors.js ./.all-contributorsrc ./AUTHORS",
"postpack": "rm -rf AUTHORS",
"release": "standard-version",
"test": "jest && bash test/test.sh",
"test:watch": "jest --watch"
},
"dependencies": {
"colors": "^1.4.0",
"fs-extra": "^10.0.0",
"semver": "^7.3.5",
"source-map-support": "^0.5.19",
"verdaccio": "^5.1.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.11",
"@types/jest": "^26.0.23",
"@types/node": "^12.20.14",
"@types/semver": "^7.3.6",
"jest": "^27.0.4",
"standard-version": "^9.3.0",
"ts-jest": "^27.0.2",
"tslint": "^6.1.3",
"typescript": "~4.3.2"
},
"greenkeeper": {
"ignore": [
"@types/node"
]
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"html",
"lcov",
"text-summary"
],
"coverageThreshold": {},
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/?(*.)+(spec|test).js?(x)"
]
}
}