-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
98 lines (98 loc) · 3.13 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
{
"name": "@symfony/stimulus-bridge",
"description": "Stimulus integration bridge for Symfony projects",
"version": "3.2.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"author": "Titouan Galopin <[email protected]>",
"engines": {
"node": "^10.13.0 || >=12.0.0"
},
"scripts": {
"build": "yarn rollup -c",
"build-types": "yarn tsc",
"test": "yarn run webpack --config test/webpack.config.js && yarn run jest",
"lint": "yarn run eslint src test",
"format": "prettier src/*.ts test/*.js --write",
"check-lint": "yarn lint --no-fix",
"check-format": "yarn format --no-write --check"
},
"peerDependencies": {
"@hotwired/stimulus": "^3.0"
},
"dependencies": {
"@hotwired/stimulus-webpack-helpers": "^1.0.1",
"@types/webpack-env": "^1.16.4",
"acorn": "^8.0.5",
"loader-utils": "^2.0.0",
"schema-utils": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@hotwired/stimulus": "^3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.3.0",
"@symfony/mock-module": "file:test/fixtures/module",
"@symfony/stimulus-testing": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"babel-jest": "^27.3.1",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-jest": "^25.2.2",
"jest": "^27.3.1",
"prettier": "^2.2.1",
"rollup": "^2.52.2",
"tslib": "^2.3.1",
"typescript": "^4.4.4",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.0"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"prettier",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": [
"test/dist/**",
"test/fixtures/**",
"test/webpack.config.js"
],
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-ts-comment": "off"
},
"env": {
"browser": true
},
"overrides": [
{
"files": [
"test/**/*.ts"
],
"extends": [
"plugin:jest/recommended"
]
}
]
},
"files": [
"src/",
"dist/",
"controllers.json",
"lazy-controller-loader.js"
],
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}