-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
48 lines (48 loc) · 1.66 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
{
"name": "containerise",
"version": "3.9.0",
"description": "Firefox extension to automatically open websites in a container",
"main": "index.js",
"repository": "https://kintesh@github.com/kintesh/containerise.git",
"author": "Kintesh <i.am@kinte.sh>",
"license": "MIT",
"scripts": {
"webpack": "webpack --config ./webpack.dev --watch",
"prebuild": "rimraf build && rimraf web-ext-artifacts",
"build": "npm run lint && npm run test && webpack --config ./webpack.prod",
"postbuild": "cp -a static/ build/ && web-ext build -s build/",
"web-ext": "web-ext run -s build/ --start-url=about:debugging#addons",
"web-ext-perm": "mkdirp ./profile && web-ext run -s build/ --start-url=about:debugging#addons -p ./profile --keep-profile-changes",
"lint": "eslint --ignore-path .gitignore ./",
"test": "jest",
"test:watch": "jest --watchAll"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/eslint-parser": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"eslint": "^8.36.0",
"file-loader": "^6.2.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"markdown-it-anchor": "^8.6.7",
"markdown-it-table-of-contents": "^0.6.0",
"markdown-it-vanilla-loader": "^1.0.10",
"mini-css-extract-plugin": "^2.7.3",
"node-sass": "^8.0.0",
"raw-loader": "^4.0.2",
"rimraf": "^4.4.0",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.2",
"web-ext": "^7.5.0",
"webpack": "^5.76.1",
"webpack-cli": "^5.0.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"punycode": "^2.3.0"
}
}