-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
132 lines (132 loc) · 4.14 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "eslint-plugin-vue-scoped-css",
"version": "2.7.1",
"description": "ESLint plugin for Scoped CSS in Vue.js",
"main": "dist/index.js",
"scripts": {
"prebuild": "npm run -s clean",
"build": "tsc --project ./tsconfig.build.json",
"clean": "rimraf .nyc_output dist coverage",
"lint": "eslint . --ext .js,.vue,.ts,.json",
"eslint-fix": "eslint . --ext .js,.vue,.ts,.json --fix",
"pretest": "npm run build",
"test:base": "mocha --require ts-node/register \"tests/**/*.ts\" --reporter dot --timeout 60000",
"test": "npm run test:nyc",
"test:nyc": "nyc --reporter=lcov npm run test:base",
"test:debug": "mocha --require ts-node/register/transpile-only \"tests/**/*.ts\" --reporter dot",
"test:watch": "npm run test:base -- --watch",
"update": "ts-node ./tools/update.ts && npm run eslint-fix && npm run test:nyc",
"new": "ts-node ./tools/new-rule.ts",
"docs:watch": "npm run vuepress -- dev --debug docs",
"docs:build": "npm run build && npm run vuepress -- build docs --no-cache",
"vuepress": "node --openssl-legacy-provider ./node_modules/vuepress/cli.js",
"preversion": "npm test && npm run update && git add .",
"version": "npm run lint -- --fix && git add .",
"version:ci": "npm run update && changeset version",
"prerelease": "npm run build",
"release": "changeset publish",
"updatefixture": "cross-env UPDATE_FIXTURE=\"true\" npm run test:base"
},
"repository": {
"type": "git",
"url": "git+https://github.com/future-architect/eslint-plugin-vue-scoped-css.git"
},
"author": "Yosuke Ota",
"funding": "https://github.com/sponsors/ota-meshi",
"license": "MIT",
"bugs": {
"url": "https://github.com/future-architect/eslint-plugin-vue-scoped-css/issues"
},
"homepage": "https://future-architect.github.io/eslint-plugin-vue-scoped-css/",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"vue",
"style",
"scoped",
"css"
],
"files": [
"dist"
],
"devDependencies": {
"@changesets/cli": "^2.24.2",
"@ota-meshi/eslint-plugin": "^0.15.1",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"@types/eslint": "^8.0.0",
"@types/eslint-visitor-keys": "^1.0.0",
"@types/estree": "^1.0.0",
"@types/lodash": "^4.14.158",
"@types/mocha": "^10.0.0",
"@types/semver": "^7.3.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"cross-env": "^7.0.2",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-eslint-plugin": "^5.2.1",
"eslint-plugin-json-schema-validator": "^4.6.1",
"eslint-plugin-jsonc": "^2.0.0",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-node-dependencies": "^0.11.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-regexp": "^2.0.0",
"eslint-plugin-vue": "^9.19.2",
"eslint-plugin-vue-scoped-css": "^2.0.0",
"eslint-plugin-yml": "^1.0.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"pack": "^2.2.0",
"prettier": "^3.1.0",
"raw-loader": "^4.0.1",
"rimraf": "^3.0.2",
"semver": "^7.3.2",
"stylelint": "^16.0.0",
"stylelint-config-recommended-vue": "^1.1.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-stylus": "^1.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.0",
"vue-eslint-editor": "^1.1.0",
"vue-eslint-parser": "^9.0.0",
"vuepress": "^1.8.2"
},
"dependencies": {
"@eslint-community/eslint-utils": "^4.4.0",
"eslint-compat-utils": "^0.3.1",
"lodash": "^4.17.21",
"postcss": "^8.4.31",
"postcss-safe-parser": "^6.0.0",
"postcss-scss": "^4.0.3",
"postcss-selector-parser": "^6.0.9",
"postcss-styl": "^0.12.0"
},
"peerDependencies": {
"eslint": ">=5.0.0",
"vue-eslint-parser": ">=7.1.0"
},
"nyc": {
"include": [
"lib/*.ts",
"lib/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"exclude": [
"**/*.spec.js",
"tests/**/*.js"
]
},
"engines": {
"node": "^12.22 || ^14.17 || >=16"
},
"publishConfig": {
"access": "public"
}
}