forked from wikitree/wikitree-browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.44 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
{
"name": "wikitree-browser-extension",
"version": "0.1.0",
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --env browser=chrome --watch",
"build": "webpack --config webpack/webpack.prod.js --env browser=chrome",
"build-dev": "webpack --config webpack/webpack.dev.js --env browser=chrome",
"watch-firefox": "webpack --config webpack/webpack.dev.js --env browser=firefox --watch",
"build-firefox": "webpack --config webpack/webpack.prod.js --env browser=firefox",
"build-firefox-dev": "webpack --config webpack/webpack.dev.js --env browser=firefox",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"clean": "rimraf dist",
"zip": "npm run clean && npm run build && cd dist && bestzip ../wikitree-browser-extension.zip *"
},
"repository": {
"type": "git",
"url": "https://github.com/wikitree/wikitree-browser-extension.git"
},
"dependencies": {
"jquery": "^3.6.1",
"jquery-ui": "^1.13.2",
"js-cookie": "^3.0.1",
"wikitree-js": "^0.3.1"
},
"devDependencies": {
"@babel/preset-env": "^7.19.4",
"bestzip": "^2.2.1",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.7.1",
"jest": "^29.2.1",
"jest-environment-jsdom": "^29.2.1",
"rimraf": "^3.0.2 ",
"sinon-chrome": "^3.0.1",
"style-loader": "^3.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.0.0",
"webpack-merge": "^5.0.0",
"webpack-target-webextension": "^1.0.4"
}
}