-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.69 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "vf-core-service-discovery",
"version": "0.1.0-beta.6",
"description": "A tool to analyse the usage of vf-core in your project",
"author": "Ossama Edbali <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/oss6/vf-core-service-discovery/issues",
"email": "[email protected]"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"vf-core-service-discovery": "dist/cli/index.js"
},
"scripts": {
"start": "yarn clean:dist && tsc --project ./ --watch",
"build": "yarn clean:dist && tsc --project ./",
"clean:dist": "rimraf dist",
"test": "nyc --reporter=lcov ava",
"test:dev": "nyc ava --verbose",
"coverage": "codecov",
"lint": "eslint . --ext .ts",
"docs": "npx typedoc",
"prepublish": "yarn build",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"release:beta": "standard-version --prerelease"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/glob": "^7.1.3",
"@types/isomorphic-fetch": "^0.0.35",
"@types/listr": "^0.14.2",
"@types/mkdirp": "^1.0.1",
"@types/node": "^14.14.8",
"@types/proxyquire": "^1.3.28",
"@types/rimraf": "^3.0.0",
"@types/semver": "^7.3.4",
"@types/sinon": "^9.0.9",
"@types/yargs": "^15.0.11",
"@types/yarnpkg__lockfile": "^1.1.4",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"ava": "^3.13.0",
"codecov": "^3.8.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.3.0",
"execa": "^5.0.0",
"fetch-mock": "^9.11.0",
"husky": "^4.3.8",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"proxyquire": "^2.1.3",
"sinon": "^9.2.2",
"standard-version": "^9.1.0",
"ts-node": "^9.1.1",
"typedoc": "^0.20.23",
"typescript": "^4.0.5"
},
"dependencies": {
"@yarnpkg/lockfile": "^1.1.0",
"boxen": "^4.2.0",
"chalk": "^4.1.0",
"date-fns": "^2.16.1",
"glob": "^7.1.6",
"isomorphic-fetch": "^3.0.0",
"listr": "^0.14.3",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2",
"semver": "^7.3.4",
"vf-core-service-discovery-versions-comparison": "^0.2.1",
"winston": "^3.3.3",
"yaml": "^1.10.0",
"yargs": "^16.1.1"
},
"ava": {
"files": [
"e2e/**",
"test/**",
"!test/fixture/**",
"!e2e/vf-core-service-discovery-e2e-projects/**"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}