forked from tophat/yvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.14 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
{
"name": "@thm/yvm",
"version": "1.0.0",
"description": "Yarn version manager",
"repository": {
"type": "git",
"url": "github:tophat/yvm"
},
"main": "yvm.js",
"scripts": {
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"contributors:check": "all-contributors check",
"precommit": "lint-staged",
"commit": "npx git-cz"
},
"jest": {
"testPathIgnorePatterns": [
"./artifacts/",
"./node_modules/",
"./node_modules_production/"
],
"coverageDirectory": "./artifacts/coverage",
"setupTestFrameworkScriptFile": "./test/setupTestFramework.js"
},
"author": "Top Hat <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"chalk": "^2.4.2",
"commander": "^2.15.1",
"cosmiconfig": "^5.0.5",
"fs-extra": "^7.0.1",
"openpgp": "^4.3.0",
"request": "^2.87.0",
"semver": "^5.6.0",
"targz": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"@tophat/eslint-config": "^0.1.4",
"all-contributors-cli": "^5.4.1",
"babel-loader": "^8.0.0-beta.3",
"bundlewatch": "^0.2.1",
"codecov": "^3.0.2",
"copy-webpack-plugin": "^4.5.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.5.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.0.0",
"eslint-plugin-prettier": "^3.0.0",
"gh-release": "^3.4.0",
"git-cz": "^1.8.0",
"husky": "^1.2.0",
"jest": "^23.1.0",
"jest-junit": "^6.0.1",
"lint-staged": "^8.1.0",
"madge": "^3.3.0",
"mock-fs": "^4.7.0",
"prettier": "1.15.3",
"semantic-release": "^15.13.3",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8",
"webpack-node-externals": "^1.7.2",
"webpack-shell-plugin-next": "^0.6.4",
"webpack-zip-files-plugin": "^1.0.0"
},
"lint-staged": {
"*.js": [
"node_modules/.bin/eslint"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}