forked from ramasilveyra/gitpkg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.2 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
{
"name": "gitpkg",
"version": "1.0.0-beta.1",
"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 .",
"precommit": "lint-staged",
"prepublish": "yarn run clean --silent && yarn run build --silent",
"test-ci-partial": "yarn run test-coverage --silent",
"test-ci": "yarn run lint --silent && yarn run test-ci-partial --silent && codecov",
"test-coverage": "yarn run jest --silent -- --coverage",
"test": "jest"
},
"author": {
"name": "Ramiro Silveyra d'Avila",
"twitter": "ramasilveyra"
},
"license": "MIT",
"engines": {
"node": ">=6.5.0"
},
"bin": "./bin/gitpkg.js",
"files": [
"bin",
"build"
],
"repository": "[email protected]:ramasilveyra/gitpkg.git",
"keywords": [
"git",
"packages",
"registry",
"modules"
],
"dependencies": {
"bluebird": "^3.5.0",
"chalk": "^1.1.3",
"del": "^3.0.0",
"end-of-stream": "^1.4.0",
"execa": "^0.7.0",
"git-remote-origin-url": "^2.0.0",
"make-dir": "^1.0.0",
"ora": "^1.3.0",
"semver": "^5.3.0",
"tar-fs": "^1.15.3",
"yargs": "^8.0.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-dynamic-import-node": "^1.0.2",
"babel-preset-env": "^1.5.2",
"codecov": "^2.2.0",
"conventional-changelog-cli": "^1.3.1",
"del-cli": "^1.0.0",
"eslint": "^3.19.0",
"eslint-config-auth0-base": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"folder-hash": "^1.1.1",
"husky": "^0.14.0",
"jest": "^20.0.4",
"lint-staged": "^4.0.0",
"prettier": "^1.4.4"
},
"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": [
"prettier --single-quote --print-width 100 --write",
"git add"
]
}
}