-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.73 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
{
"name": "@swellaby/renovate-config",
"description": "Our renovate configuration module",
"publishConfig": {
"access": "public"
},
"version": "1.0.0",
"license": "MIT",
"author": {
"name": "Swellaby",
"email": "opensource@swellaby.com",
"url": "http://swellaby.com"
},
"contributors": [
{
"name": "Bailey Everts",
"url": "https://github.com/beverts312"
},
{
"name": "Caleb Cartwright",
"url": "https://github.com/calebcartwright"
}
],
"repository": {
"type": "git",
"url": "https://github.com/swellaby/renovate-config.git"
},
"bugs": {
"url": "https://github.com/swellaby/renovate-config/issues",
"email": "opensource@swellaby.com"
},
"homepage": "https://github.com/swellaby/renovate-config/blob/master/README.md",
"renovate-config": {
"default": {
"extends": [
"config:base",
":preserveSemverRanges"
],
"assignees": [
"calebcartwright"
],
"labels": [
"dependencies"
]
}
},
"devDependencies": {
"@swellaby/eslint-config": "^2.0.0",
"chai": "^4.2.0",
"eslint": "^8.0.0",
"mocha": "^9.0.0",
"mocha-multi-reporters": "^1.1.7",
"rimraf": "^3.0.0"
},
"scripts": {
"clean": "rimraf .testresults/",
"build": "npm run lint && npm run test",
"lint": "eslint **/*.js",
"pretest": "rimraf .testresults/",
"test": "mocha",
"version:tagless": "npm --no-git-tag-version version patch",
"prepublish:local": "npm run build && npm run version:tagless",
"publish:local": "npm publish",
"dev:reset": "npm run clean && node -e \"require('rimraf').sync('node_modules');\" && npm run dev:setup",
"dev:setup": "npm i && npm run build"
}
}