-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
44 lines (44 loc) · 1.75 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
{
"name": "privacy-manager",
"version": "4.0.0",
"description": "Privacy Manager is a chrome extension for data transparency and control",
"scripts": {
"test": "npm run test:eslint && npm run test:stylelint && npm run test:puppeteer -- --exit",
"test:puppeteer": "npm run build:webpack && mocha test/puppeteer/*.js --timeout 20000",
"test:eslint": "eslint src",
"test:stylelint": "stylelint src/**/*.css",
"build": "npm run build:webpack:prod && cd dist/;zip -r ../privacy-manager.zip .;cd ..",
"import:components": "pm-components --single-bundle --prod --output dist",
"build:webpack": "npm run import:components && webpack --config webpack.config.js",
"build:webpack:watch": "npm run import:components && WATCH=1 webpack --config webpack.config.js",
"build:webpack:prod": "npm run import:components && PROD=1 webpack --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Privacy-Managers/Privacy-Manager.git"
},
"author": "Manvel Saroyan",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Privacy-Managers/Privacy-Manager/issues"
},
"homepage": "https://chrome.google.com/webstore/detail/privacy-manager/giccehglhacakcfemddmfhdkahamfcmd",
"devDependencies": {
"eslint": "^8.30.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^4.1.0",
"mocha": "^10.2.0",
"puppeteer": "^18.2.1",
"stylelint": "^14.16.0",
"stylelint-config-recommended": "^9.0.0"
},
"dependencies": {
"copy-webpack-plugin": "^11.0.0",
"csso": "^5.0.5",
"privacy-manager-components": "^1.0.2",
"webextension-polyfill": "^0.10.0",
"webpack": "^5.75.0"
}
}