-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.15 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
{
"name": "@graupl/icons",
"version": "1.0.0-beta.1",
"description": "A plugin for Graupl that provides bare-minimum icon components.",
"type": "module",
"exports": {
".": {
"sass": "./scss/icon.scss"
},
"./*.scss": {
"sass": "./scss/*.scss"
},
"./src/*.scss": {
"sass": "./src/scss/*.scss"
}
},
"scripts": {
"prepare": "husky",
"commit": "git cz",
"eslint": "eslint .",
"prettier": "prettier '**/*.{js,mjs,cjs,scss,sass}'",
"stylelint": "stylelint '**/*.scss' --allow-empty-input",
"lint": "npm run eslint -- --fix && npm run stylelint -- --fix && npm run prettier -- --write",
"sass": "rm -rf dist && sass scss:dist --pkg-importer=node",
"postcss": "postcss 'dist/**/*.css' --replace",
"build": "npm run sass && npm run postcss",
"release": "git add dist/. && standard-version -a",
"prerelease": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Graupl/graupl.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Graupl/icons/issues"
},
"homepage": "https://github.com/Graupl/icons#readme",
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@eslint/js": "^9.0.0",
"@graupl/graupl": "^1.0.0-beta.1",
"autoprefixer": "^10.4.19",
"commitizen": "^4.3.0",
"cssnano": "^7.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-jsdoc": "^48.2.3",
"globals": "^15.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.38",
"postcss-cli": "^11.0.0",
"postcss-discard-comments": "^7.0.0",
"prettier": "^3.2.5",
"sass": "^1.69.5",
"standard-version": "^9.5.0",
"stylelint": "^16.3.1",
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-config-sass-guidelines": "^11.1.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-prettier": "^5.0.0"
},
"peerDependencies": {
"@graupl/graupl": ">=1.0.0-beta.1"
}
}