This repository was archived by the owner on Nov 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.43 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.43 KB
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
{
"name": "@weaklayer/sensor",
"description": "Browser Detection and Response",
"version": "0.0.4",
"license": "AGPL-3.0-or-later",
"private": true,
"files": [
"dist"
],
"scripts": {
"wipe": "npm run clean && rm -rf node_modules",
"clean": "rm -rf ./dist && rm -rf ./.licenses",
"build": "npm run clean && webpack --config webpack.config.js ",
"build-firefox": "npm run build && cp manifests/firefox/* dist/",
"build-chrome": "npm run build && cp manifests/chrome/* dist/",
"build-edge": "npm run build && cp manifests/edge/* dist/",
"package": "licensed cache && licensed status && licensed notices && cp .licenses/NOTICE dist/ && cd dist && zip -r weaklayer-sensor-binary-release.zip ./",
"test": "nyc mocha"
},
"devDependencies": {
"@types/base64-js": "^1.3.0",
"@types/chai": "^4.2.12",
"@types/firefox-webext-browser": "^78.0.1",
"@types/jsdom": "^16.2.4",
"@types/mocha": "^8.0.3",
"@types/pako": "^1.0.1",
"@types/uuid": "^8.3.0",
"chai": "^4.2.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.1.0",
"jsdom": "^16.4.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"ts-loader": "^8.0.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"base64-js": "1.3.1",
"pako": "^1.0.11",
"uuid": "8.3.1",
"webextension-polyfill": "0.6.0"
}
}