-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.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
{
"name": "@ultimaker/stylelint-config",
"version": "2.0.1",
"description": "Mostly sane Stylelint rules for Ultimaker web-based projects",
"main": "index.js",
"files": [
"index.js",
"scss.js",
"rules/*.js"
],
"scripts": {
"build": "exit 0",
"lint": "eslint '**/*.js'",
"lint:fix": "eslint --fix '**/*.js'",
"test": "npm run test:css && npm run test:scss",
"test:css": "stylelint --config ./index.js test/styles.css",
"test:scss": "stylelint --config ./scss.js test/styles.scss"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ultimaker/stylelint-config.git"
},
"keywords": [
"ultimaker",
"stylelint",
"stylelint-config"
],
"author": "Ultimaker B.V.",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Ultimaker/stylelint-config/issues"
},
"homepage": "https://github.com/Ultimaker/stylelint-config#readme",
"devDependencies": {
"eslint": "^8.3.0",
"stylelint": "^14.1.0",
"stylelint-config-standard-scss": "^5.0.0"
},
"peerDependencies": {
"stylelint": "^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0"
}
}