-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.25 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
{
"name": "@veobot/stylelint-config",
"version": "1.1.1",
"description": "Veo Robotics Stylelint rules for all CSS / SCSS styles",
"author": {
"name": "Ty-Lucas Kelley",
"email": "ty@veobot.com"
},
"homepage": "https://github.com/veobot/stylelint-config",
"bugs": "https://github.com/veobot/stylelint-config/issues",
"repository": {
"type": "git",
"url": "https://github.com/veobot/stylelint-config"
},
"license": "MIT",
"keywords": [
"stylelint",
"stylelint-config",
"lint",
"javascript",
"typescript",
"css",
"sass",
"scss",
"vue"
],
"scripts": {
"preinstall": "node -e \"if (!~process.env.npm_execpath.indexOf('yarn')) throw new Error('Install dependencies with yarn, not npm')\"",
"clean": "rm -rf node_modules",
"postclean": "yarn install",
"lint": "yarn lint:js && yarn lint:md",
"lint:js": "eslint --report-unused-disable-directives index.js test/index.test.js",
"lint:md": "markdownlint README.md CHANGELOG.md",
"pretest": "yarn lint",
"test": "jest",
"prepublishOnly": "yarn test"
},
"main": "index.js",
"jest": {
"preset": "jest-preset-stylelint",
"transform": {
"^.+\\.js$": "babel-jest"
},
"setupFiles": [
"<rootDir>/jest.init.js"
]
},
"peerDependencies": {
"stylelint": "10.1.0",
"stylelint-config-standard": "18.3.0",
"stylelint-processor-html": "1.0.0"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.8.4",
"@babel/preset-env": "7.8.4",
"@typescript-eslint/eslint-plugin": "2.19.2",
"@typescript-eslint/parser": "2.19.2",
"@veobot/eslint-config": "1.4.0",
"@vue/eslint-config-typescript": "5.0.1",
"babel-jest": "25.1.0",
"babel-polyfill": "6.26.0",
"eslint": "6.8.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jest": "23.7.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-vue": "6.1.2",
"eslint-plugin-vue-i18n": "0.3.0",
"jest": "25.1.0",
"jest-preset-stylelint": "1.3.0",
"markdownlint-cli": "0.22.0",
"stylelint": "13.1.0",
"stylelint-config-standard": "20.0.0",
"stylelint-processor-html": "1.0.0",
"typescript": "3.7.5",
"vue-eslint-parser": "7.0.0"
}
}