This repository has been archived by the owner on Mar 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.08 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
{
"name": "hothouse",
"private": true,
"description": "Continuous dependency update for Node.js project",
"version": "0.3.0",
"main": "index.js",
"scripts": {
"precommit": "pretty-quick --staged",
"bootstrap": "lerna bootstrap",
"release": "./scripts/release",
"build": "lerna run build",
"test": "lerna run test",
"lint": "eslint --cache '**/{src,__tests__}/**/*.js'",
"flow": "flow --show-all-errors"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Leko/hothouse.git"
},
"keywords": [
"cli",
"ci",
"dependency",
"update"
],
"author": "Leko <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Leko/hothouse/issues"
},
"homepage": "https://github.com/Leko/hothouse#readme",
"changelog": {
"labels": {
"Type: Breaking Change": "Breaking Change",
"Type: Feature": "Feature",
"Type: Bug": "Bug",
"Type: Maintenance": "Maintenance",
"Type: Documentation": "Documentation",
"Type: Refactoring": "Refactoring"
}
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.51",
"@babel/core": "^7.0.0-beta.51",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.51",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"@babel/preset-flow": "^7.0.0-beta.51",
"@babel/register": "^7.0.0-beta.51",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.2.0",
"can-npm-publish": "^1.3.1",
"dotenv-cli": "^1.4.0",
"eslint": "^5.0.0",
"eslint-config-prettier": "^3.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-flowtype": "^3.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"flow-bin": "^0.75.0",
"husky": "^0.14.3",
"jest": "^23.2.0",
"lerna": "^3.0.3",
"lerna-changelog": "^0.8.0",
"prettier": "^1.13.5",
"pretty-quick": "^1.6.0",
"regenerator-runtime": "^0.12.0"
}
}