This repository has been archived by the owner on Oct 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
92 lines (92 loc) · 2.54 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"private": true,
"scripts": {
"lint": "eslint source/*.js && stylelint source/*.css",
"lint:fix": "eslint --fix source/*.js && stylelint --fix source/*.css",
"test": "npm run lint && cross-env BABEL_ENV=testing ava && run-s build",
"build": "webpack --mode=production",
"start": "webpack --mode=development --watch",
"publish:amo": "shipit firefox distribution",
"publish:cws": "shipit chrome distribution",
"prerelease:version": "dot-json distribution/manifest.json version $VER",
"prerelease:source-url": "echo https://github.com/DesignandHuman/qui-possede-les-medias/archive/\"${GITHUB_SHA:-$VER}\".zip > distribution/SOURCE_URL",
"release": "npm-run-all build prerelease:* publish:*"
},
"dependencies": {
"element-ready": "^6.0.0",
"localforage": "^1.7.2",
"select-dom": "^7.1.0",
"webext-domain-permission-toggle": "2.1.0",
"webext-dynamic-content-scripts": "^8.0.0",
"webext-options-sync": "^3.0.0",
"webextension-polyfill": "^0.8.0"
},
"devDependencies": {
"@ava/babel": "^2.0.0",
"@babel/core": "^7.8.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@babel/register": "^7.8.6",
"@wext/shipit": "^0.2.0",
"ava": "^3.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^9.0.0",
"cross-env": "^7.0.0",
"csv-parse": "^4.8.8",
"daily-version": "^2.0.0",
"dot-json": "^1.2.0",
"eslint": "^7.2.0",
"eslint-config-standard": "^16.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"loader-utils": "^2.0.0",
"npm-run-all": "^4.1.5",
"stylelint": "^13.2.0",
"stylelint-config-standard": "^22.0.0",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.24.0",
"webpack-chrome-extension-reloader": "^1.3.0",
"webpack-cli": "^4.0.0"
},
"ava": {
"babel": true,
"files": [
"test/*.js"
],
"require": [
"@babel/register"
]
},
"babel": {
"env": {
"testing": {
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
}
}
},
"eslintConfig": {
"extends": "standard",
"env": {
"browser": true
},
"rules": {
"no-unused-vars": [
2,
{
"varsIgnorePattern": "^h$"
}
]
},
"globals": {
"browser": true
}
},
"stylelint": {
"extends": "stylelint-config-standard"
}
}