-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.51 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
{
"name": "git-tags-remote",
"version": "1.0.5",
"description": "Get remote repository tags.",
"keywords": [
"git",
"ls-remote",
"tags"
],
"homepage": "https://github.com/sh0ji/git-tags-remote#readme",
"bugs": {
"url": "https://github.com/sh0ji/git-tags-remote/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sh0ji/git-tags-remote.git"
},
"license": "MIT",
"author": "Evan Yamanishi",
"main": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup --config",
"build:prod": "npm run clean && NODE_ENV=production npm run build",
"clean": "rm -rf dist",
"coverage": "nyc --reporter=json ava",
"lint": "eslint . --ext .js,.ts",
"prepublishOnly": "npm run build:prod && npm run lint && npm test",
"release": "standard-version -sa",
"test": "ava"
},
"ava": {
"require": [
"esm"
]
},
"dependencies": {
"semver": "^7.3.2"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.1",
"@types/semver": "^7.3.1",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"ava": "^3.11.1",
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.22.0",
"esm": "^3.2.25",
"nyc": "^15.1.0",
"rollup": "^2.23.0",
"rollup-plugin-terser": "^7.0.2",
"standard-version": "^9.3.0",
"tslib": "^2.3.0",
"typescript": "^4.3.4"
}
}