-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.91 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
{
"name": "TabMemFree",
"version": "0.3.2",
"description": "TabMemFree is a Chrome extension that reduce CPU/MEM load by \"parking\" inactive tabs",
"scripts": {
"ext:build": "npm run ext:build:cleanup && npm run ext:build:static && npm run ext:build:version && npm run ext:build:dynamic",
"ext:build:cleanup": "cd extension/ && rm -R build; mkdir -p build; mkdir -p release",
"ext:build:static": "cd extension/ && cp -R skeleton/* build",
"ext:build:version": "cd extension/build && dot-json manifest.json version $npm_package_version",
"ext:build:dynamic": "cd extension/ && rollup --config",
"ext:watch": "npm run ext:build && cd extension/ && rollup src/background.js --file build/background.js --format iife --watch",
"ext:release": "npm run ext:build && cd extension/build && folder-zip-sync \"./\" \"../release/$npm_package_name-$npm_package_version.zip\"",
"test:eslint": "eslint --format=node_modules/eslint-formatter-pretty ."
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "npm run test:eslint"
}
},
"repository": {
"type": "git",
"url": "https://github.com/glukki/TabMemFree.git"
},
"author": "Vitaliy (glukki) Meshchaninov",
"license": "ISC",
"bugs": {
"url": "https://github.com/glukki/TabMemFree/issues"
},
"homepage": "https://github.com/glukki/TabMemFree",
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"dot-json": "^1.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-formatter-pretty": "^3.0.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"folder-zip-sync": "^1.0.5",
"husky": "^4.2.3",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"rollup": "^2.1.0"
},
"dependencies": {
"chrome-promise": "^3.0.5"
}
}