-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.24 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
{
"name": "vocab-forager",
"version": "2.1.5",
"description": "VocabForager is a browser extension built for people building their vocabulary for one, or several, languages.",
"main": "index.js",
"scripts": {
"clean": "rm -rf extension extension.zip",
"test": "jest --coverage --silent --detectOpenHandles",
"build-dev": "webpack --env mode=development --config webpack/webpack.config.js",
"build-prod": "webpack --env mode=production --config webpack/webpack.config.js",
"build-prod-zip": "npm run clean && npm run build-prod && zip -r extension.zip extension"
},
"repository": {
"type": "git",
"url": "https://github.com/ChrisERo/vocab-explorer.git"
},
"keywords": [],
"author": "Christian Edward Rodriguez",
"bugs": {
"url": "https://github.com/ChrisERo/vocab-explorer/issues"
},
"homepage": "https://github.com/ChrisERo/vocab-explorer#readme",
"devDependencies": {
"@types/chrome": "0.0.269",
"@types/jest": "29.5.12",
"@types/jsdom": "21.1.7",
"copy-webpack-plugin": "12.0.2",
"fake-indexeddb": "6.0.0",
"jest": "29.7.0",
"jsdom": "24.1.1",
"ts-jest": "29.2.4",
"ts-loader": "9.5.1",
"typescript": "5.5.4",
"webpack": "5.97.1",
"webpack-cli": "5.1.4"
}
}