-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.3 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
{
"name": "consent-manager",
"version": "1.0.0",
"description": "Globally manage your consent on the internet",
"author": "[email protected]",
"license": "ISC",
"homepage": "https://github.com/jeandeducla/consent-manager#readme",
"targets": {
"debug": {},
"prod": {
"sourceMap": false
}
},
"source": "src/manifest.json",
"scripts": {
"lint": "eslint src/ --ext .ts",
"clean": "rm -rf dist/prod",
"check": "tsc --noEmit",
"prebuild": "npm run check && npm run lint && npm run clean",
"build": "parcel build --target prod",
"clean:debug": "rm -rf dist/debug",
"prebuild:debug": "npm run check && npm run clean:debug",
"build:debug": "parcel build --target debug",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeandeducla/consent-manager.git"
},
"bugs": {
"url": "https://github.com/jeandeducla/consent-manager/issues"
},
"browserslist": [
"since 2017-06"
],
"devDependencies": {
"@parcel/config-webextension": "^2.0.0",
"@types/firefox-webext-browser": "^82.0.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"parcel": "^2.0.0",
"typescript": "^4.4.3"
}
}