-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 919 Bytes
/
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
{
"name": "youtube-stay-focused",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run build:page && npm run build:popup",
"build:page": "export NODE_OPTIONS=--openssl-legacy-provider && webpack src/page-script/index.js -o extension/page-script.js --mode production",
"build:popup": "export NODE_OPTIONS=--openssl-legacy-provider && webpack src/popup-script/index.js -o extension/popup-script.js --mode production",
"format": "prettier --single-quote --trailing-comma es5 --write \"src/**/*.js\"",
"test": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"lodash": "^4.17.15",
"natural": "^2.1.3"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-jest": "^26.0.1",
"chalk": "^4.0.0",
"jest": "^26.0.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}