-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 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
82
83
84
85
86
87
88
89
90
{
"name": "find-config-up",
"version": "0.0.0-development",
"private": false,
"author": "Immonet dev team <[email protected]> (https://immonet.de)",
"license": "MIT",
"description": "Resolve your packages configuration from a .*rc or package.json with a given property up the file-tree.",
"main": "dist",
"engines": {
"node": ">=8.11.4",
"yarn": ">=1.6.0"
},
"files": [
"dist"
],
"keywords": [
"find",
"up",
"config",
"resolve",
"rc",
"raw-config",
"find-up",
"package",
"json",
"configuration",
"parse"
],
"scripts": {
"test": "jest",
"clean": "rimraf dist",
"build": "babel src --out-dir dist --ignore spec.js && flow-copy-source -v src dist --ignore='*.spec.js'",
"dev": "nodemon --quiet -w src -x 'yarn build'",
"flow": "flow",
"flow-typed": "flow-typed",
"flow-typed-install": "flow-typed install --ignoreDeps=peer --overwrite",
"prepare": "yarn flow-typed-install || true",
"lint": "eslint src",
"prettier": "prettier --write src/**/*.js",
"release": "semantic-release"
},
"dependencies": {
"find-up": "3.0.0",
"lodash.merge": "4.6.2"
},
"devDependencies": {
"@immowelt/babel-preset-immowelt-node": "1.1.1",
"@immowelt/eslint-config-immowelt-react": "2.1.1",
"@immowelt/jest-preset-node": "1.1.1",
"babel-cli": "6.26.0",
"eslint": "5.16.0",
"flow-bin": "0.153.0",
"flow-copy-source": "2.0.9",
"flow-typed": "2.6.2",
"jest": "23.6.0",
"mock-fs": "4.14.0",
"prettier": "1.19.1",
"rimraf": "2.7.1",
"semantic-release": "13.4.1"
},
"jest": {
"preset": "@immowelt/jest-preset-node"
},
"publishConfig": {
"access": "public"
},
"release": {
"analyzeCommits": {
"releaseRules": [
{
"type": "BREAKING",
"release": "major"
},
{
"type": "FEATURE",
"release": "minor"
},
{
"type": "BUGFIX",
"release": "patch"
}
]
},
"branch": "master"
},
"repository": {
"type": "git",
"url": "https://github.com/ImmoweltGroup/find-config-up.git"
}
}