-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
58 lines (58 loc) · 1.61 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
{
"name": "eslint-plugin-module-resolver",
"version": "1.5.0",
"description": "Warn when using relative paths to modules aliased",
"repository": "HeroProtagonist/eslint-plugin-module-resolver",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"files": [
"dist"
],
"author": "Jordan",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:inspect": "node --inspect node_modules/.bin/jest --runInBand",
"prebuild": "yarn clean",
"build": "babel lib --out-dir dist",
"build:watch": "yarn build --watch",
"clean": "rimraf *.tgz dist",
"bump": "yarn test && yarn version && yarn build && npm publish",
"format": "prettier --write '{lib,tests}/**/*.js'",
"prepare": "yarn run build && husky install"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/eslint-parser": "^7.11.0",
"@babel/eslint-plugin": "^7.11.0",
"@babel/preset-env": "^7.7.7",
"babel-core": "^6.26.3",
"codecov": "^3.6.4",
"eslint": "^7.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^6.0.0",
"jest": "^27.0.3",
"lint-staged": "^11.0.0",
"prettier": "^2.0.5",
"regenerator-runtime": "^0.13.3",
"rimraf": "^3.0.0"
},
"license": "MIT"
}