-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
100 lines (100 loc) · 2.42 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
96
97
98
99
100
{
"name": "gitpkg",
"version": "1.0.0-beta.4",
"description": "Publish packages as git tags",
"main": "build/index.js",
"scripts": {
"build": "babel src -d build -s",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"clean": "del ./build",
"lint": "eslint .",
"prepare": "husky install",
"prepublish": "yarn run clean && yarn run build",
"test-ci-partial": "yarn run test-coverage",
"test-ci": "yarn run lint && yarn run test-ci-partial && codecov",
"test-coverage": "yarn run jest -- --coverage",
"test": "jest"
},
"author": {
"name": "Ramiro Silveyra d'Avila",
"twitter": "ramasilveyra"
},
"license": "MIT",
"engines": {
"node": ">=10.12.0"
},
"bin": "./bin/gitpkg.js",
"files": [
"bin",
"build"
],
"repository": "[email protected]:ramasilveyra/gitpkg.git",
"keywords": [
"git",
"packages",
"registry",
"modules"
],
"dependencies": {
"bluebird": "^3.7.2",
"chalk": "^4.1.2",
"del": "^6.1.1",
"end-of-stream": "^1.4.4",
"execa": "^5.1.1",
"find-up": "^5.0.0",
"git-remote-origin-url": "^3.1.0",
"make-dir": "^3.0.2",
"ora": "^5.4.1",
"semver": "^7.1.3",
"tar-fs": "^2.0.1",
"yargs": "^17.5.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/eslint-parser": "^7.18.2",
"@babel/preset-env": "^7.9.0",
"babel-plugin-dynamic-import-node": "^2.3.0",
"codecov": "^3.6.5",
"conventional-changelog-cli": "^2.0.31",
"del-cli": "^4.0.1",
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.20.2",
"folder-hash": "^4.0.2",
"husky": "^8.0.1",
"jest": "^28.1.0",
"lint-staged": "^13.0.0",
"prettier": "^2.0.2"
},
"gitpkg": {
"registry": "[email protected]:ramasilveyra/public-registry.git"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!**/node_modules/**",
"!**/build/**",
"!**/bin/**",
"!**/coverage/**"
],
"testEnvironment": "node",
"testMatch": [
"**/*.test.js"
]
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"prettier": {
"trailingComma": "none",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 100,
"endOfLine": "lf",
"arrowParens": "avoid"
}
}