-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.9 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
49
50
51
52
{
"name": "teleport-extension",
"version": "0.1.1",
"author": "vajsm",
"homepage": "https://github.com/vajsm/teleport-extension",
"license": "GNU GENERAL PUBLIC LICENSE v3",
"description": "Chromium extension to move tabs around the browser's windows",
"engines": {
"node": "14.13.1",
"npm": "6.14.8"
},
"scripts": {
"build": "webpack --config ./webpack/config.prod.js && npm run pack",
"start": "webpack --config ./webpack/config.dev.js",
"test": "mochapack --watch --webpack-config ./webpack/config.test.js \"tests/*.test.js\"",
"test:no-watch": "mochapack --webpack-config ./webpack/config.test.js \"tests/*.test.js\"",
"lint": "npx eslint *.js",
"clean": "rm -rf ./dist",
"pack": "cd dist/prod && crx pack -p ../../packagekey.pem -o ../teleport-ext.crx"
},
"dependencies": {
"core-js": "^3.15.2",
"regenerator-runtime": "^0.13.7"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.7",
"@babel/preset-env": "^7.14.7",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-stage-2": "^6.24.1",
"copy-webpack-plugin": "^9.0.1",
"crx": "^5.0.1",
"css-loader": "^5.2.6",
"eslint": "^7.31.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-import": "^2.23.4",
"mocha": "^9.0.1",
"mochapack": "^2.1.2",
"prettier": "2.3.2",
"sinon": "^11.1.1",
"sinon-chrome": "^3.0.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.40.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0"
},
"export-symbol": "teleport.exports"
}