-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 2 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
{
"name": "MultiClip",
"version": "0.3.0",
"description": "Chrome Extension to copy multiple items and selectively paste where required",
"main": "background.js",
"keywords": [],
"author": "Adépòjù Olúwáségun",
"license": "ISC",
"bugs": {
"url": "https://github.com/Oluwasegun-AA/MultiClip/issues"
},
"homepage": "https://github.com/Oluwasegun-AA/MultiClip#readme",
"scripts": {
"clear-pem": "rm -rf node_modules/public-encrypt/test",
"bundle": "webpack --mode production",
"compile": "run-s build bundle",
"build": "yarn clear && babel ./src/client/views ./src/client/assets ./src/client/styles -d public/client --copy-files",
"clear": "rimraf public && yarn clear-pem",
"pretty": "./node_modules/.bin/prettier --single-quote --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"lint": "eslint src/**/*.js --fix",
"test:pre-commit": "CI=true react-scripts test --colors -u --coverage",
"contributors:init": "all-contributors init",
"contributors:add": "npx all-contributors add",
"contributors:generate": "npx all-contributors generate"
},
"husky": {
"hooks": {
"pre-push": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Oluwasegun-AA/MultiClip.git"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.5",
"@babel/plugin-proposal-class-properties": "7.3.4",
"@babel/plugin-transform-runtime": "7.4.4",
"@babel/preset-env": "7.4.5",
"@babel/register": "7.5.5",
"all-contributors-cli": "6.1.2",
"babel-loader": "8.0.6",
"eslint": "^6.4.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"husky": "3.0.4",
"lint-staged": "9.2.3",
"npm-run-all": "4.1.5",
"prettier": "1.18.2",
"rimraf": "^3.0.2",
"webpack": "4.41.0",
"webpack-cli": "3.3.9"
}
}