forked from pypi/warehouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.2 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
96
97
98
{
"repository": "pypa/warehouse",
"license": "Apache-2.0",
"scripts": {
"test": "jest"
},
"jest": {
"setupFilesAfterEnv": [
"./tests/frontend/setup.js"
],
"testRegex": ".*_test.js"
},
"dependencies": {
"@babel/core": "7.6.0",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/polyfill": "7.6.0",
"@babel/preset-env": "7.6.0",
"@babel/register": "7.6.0",
"@fortawesome/fontawesome-free": "5.13.0",
"@stimulus/polyfills": "1.1.1",
"babel-loader": "8.0.6",
"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",
"exports-loader": "0.6.4",
"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": "2.6.1",
"gulp-uglify": "3.0.0",
"imports-loader": "0.7.1",
"jquery": "3.5.0",
"stimulus": "1.1.1",
"uglify-js": "3.2.1",
"vinyl-named": "1.1.0",
"webpack": "^4.42.1",
"webpack-stream": "^5.0.0",
"whatwg-fetch": "2.0.3",
"zopflipng-bin": "5.0.0"
},
"devDependencies": {
"@testing-library/dom": "6.2.0",
"@testing-library/jest-dom": "4.1.0",
"babel-eslint": "8.2.2",
"babel-jest": "24.9.0",
"eslint": "4.18.2",
"jest": "24.9.0",
"jest-fetch-mock": "2.1.2",
"mutationobserver-shim": "0.3.3",
"node-webcrypto-ossl": "1.0.48",
"sass-lint": "1.13.1"
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"amd": true
},
"extends": "eslint:recommended",
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"comma-dangle": [
"error",
"always-multiline"
],
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
]
}
}
}