-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.39 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "reweex",
"version": "0.2.0",
"description": "A redux wrapper for webextensions",
"keywords": [
"redux",
"store",
"react",
"webextension",
"extension",
"webext",
"reweex",
"chrome",
"firefox",
"typescript",
"types",
"typing"
],
"homepage": "https://github.com/nols1000/reweex",
"bugs": {
"url": "https://github.com/nols1000/reweex/issues"
},
"main": "dist/bundles/reweex.min.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"build": "npm run clean && npm run build:dev && npm run build:prod",
"build:dev": "webpack --progress",
"build:prod": "webpack --config webpack.config.prod.js --progress",
"clean": "rimraf dist",
"test": "jest --coverage --watchAll",
"test:ci": "jest --coverage --coverageReporters=text-lcov | coveralls"
},
"author": "Nils-Börge Margotti",
"repository": {
"type": "git",
"url": "https://github.com/nols1000/reweex.git"
},
"license": "GPL-3.0-only",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/redux": "^3.6.0",
"coveralls": "^3.1.1",
"jest": "^27.2.5",
"jest-webextension-mock": "^3.7.19",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"web-ext-types": "^3.2.1",
"webpack": "^5.28.1",
"webpack-cli": "^4.9.0"
},
"peerDependencies": {
"redux": "^4.0.1"
}
}