-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.47 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
{
"name": "@swellaby/eslint-config",
"version": "2.0.0",
"description": "Our eslint configurations",
"license": "MIT",
"main": "lib/bundles/node.js",
"author": {
"name": "Swellaby",
"email": "[email protected]",
"url": "http://swellaby.com"
},
"contributors": [
{
"name": "Caleb Cartwright",
"url": "https://github.com/calebcartwright"
}
],
"repository": {
"type": "git",
"url": "https://github.com/swellaby/eslint-config.git"
},
"bugs": {
"url": "https://github.com/swellaby/eslint-config/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/swellaby/eslint-config/blob/master/README.md",
"keywords": [
"swellaby",
"config",
"eslint",
"eslintconfig",
"eslint-config"
],
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.0.0",
"mocha": "^9.0.0",
"mocha-multi-reporters": "^1.1.7",
"rimraf": "^3.0.2"
},
"peerDependencies": {
"eslint": ">=3.0.0"
},
"scripts": {
"build": "npm run lint && npm 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 --access public",
"dev:reset": "rimraf .testresults && node -e \"require('rimraf').sync('node_modules');\" && npm run dev:setup",
"dev:setup": "npm i && npm run build"
}
}