forked from softvar/enhanced-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.02 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
{
"name": "enhanced-github",
"version": "3.1.0",
"description": "Add-ons for GitHub website - Download File, display size of each file and Copy file contents",
"main": "src/inject.js",
"scripts": {
"dev": "webpack --watch --mode=development",
"prod": "webpack --mode=production",
"lint": "eslint '**/*.js' --fix",
"prettier": "./node_modules/prettier/bin-prettier.js --write",
"test:dev": "jest --config=jest.config.js --watch --debug --colors --errorOnDeprecated",
"test": "jest --config=jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/softvar/enhanced-github.git"
},
"author": "Varun Malhotra",
"license": "MIT",
"bugs": {
"url": "https://github.com/softvar/enhanced-github/issues"
},
"homepage": "https://github.com/softvar/enhanced-github#readme",
"keywords": [
"extension",
"github",
"enhanced-github",
"file-download"
],
"dependencies": {
"clipboard": "^1.6.1"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^1.3.1",
"jest": "^24.9.0",
"lint-staged": "^8.1.3",
"prettier": "^1.16.4",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.9",
"webpack-zip-files-plugin": "^1.0.0"
},
"husky": {
"hooks": {
"pre-push": "yarn lint"
}
},
"lint-staged": {
"globOptions": {
"matchBase": false
},
"linters": {
"**/*.js": [
"prettier",
"git add"
],
"**/*.{json,md}": [
"prettier",
"git add"
]
}
},
"engineStrict": true,
"engines": {
"node": ">= 10.16.0"
}
}