forked from pypi/warehouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.17 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
93
94
95
{
"repository": "pypa/warehouse",
"license": "Apache-2.0",
"scripts": {
"test": "jest --coverage"
},
"jest": {
"setupFilesAfterEnv": [
"./tests/frontend/setup.js"
],
"testEnvironment": "jsdom",
"testRegex": ".*_test.js"
},
"dependencies": {
"@babel/core": "7.18.0",
"@babel/plugin-proposal-class-properties": "7.17.12",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.18.0",
"@babel/register": "7.17.7",
"@fortawesome/fontawesome-free": "5.13.0",
"@hotwired/stimulus": "^3.1.1",
"@hotwired/stimulus-webpack-helpers": "^1.0.1",
"babel-loader": "8.2.5",
"clipboard": "1.7.1",
"cookie": "0.4.0",
"cssnano": "4.1.10",
"date-fns": "1.29.0",
"debounce": "1.2.0",
"del": "3.0.0",
"gulp": "^4.0.2",
"gulp-brotli": "^3.0.0",
"gulp-concat": "2.6.1",
"gulp-dart-sass": "^1.0.2",
"gulp-gzip": "1.4.2",
"gulp-image": "^6.1.0",
"gulp-postcss": "8.0.0",
"gulp-rename": "^2.0.0",
"gulp-rev-all": "0.9.8",
"gulp-rev-napkin": "0.1.0",
"gulp-rtlcss": "^1.4.1",
"gulp-sourcemaps": "^3.0.0",
"jquery": "3.5.0",
"normalize.css": "^8.0.1",
"vinyl-named": "1.1.0",
"webpack": "^5.75.0",
"webpack-stream": "^7.0.0",
"zopflipng-bin": "5.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "7.17.0",
"@testing-library/dom": "6.2.0",
"@testing-library/jest-dom": "4.1.0",
"babel-jest": "28.1.0",
"eslint": "8.16.0",
"gulp-terser": "^2.1.0",
"jest": "28.1.0",
"jest-environment-jsdom": "^28.1.0",
"jest-fetch-mock": "^3.0.3",
"sass-lint": "1.13.1"
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"amd": true
},
"extends": "eslint:recommended",
"parser": "@babel/eslint-parser",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"comma-dangle": [
"error",
"always-multiline"
],
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
]
}
}
}