forked from kintesh/containerise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.6 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
{
"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": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"css-loader": "^3.0.0",
"eslint": "^7.13.0",
"file-loader": "^4.0.0",
"jest": "^26.6.3",
"markdown-it-anchor": "^5.2.4",
"markdown-it-table-of-contents": "^0.4.4",
"markdown-it-vanilla-loader": "^1.0.10",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.14.1",
"raw-loader": "^3.1.0",
"rimraf": "^3.0.2",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"web-ext": "^5.3.0",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"punycode": "^2.1.1"
}
}