Skip to content

Commit 1446ca6

Browse files
committed
Add package metadata
1 parent 3bdbfc0 commit 1446ca6

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

packages/stylelint-unused-classes/package.json

+16
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
11
{
22
"name": "stylelint-unused-classes",
33
"version": "0.1.0",
4+
"description": "Detects possibly unused class names and ids",
5+
"keywords": ["unused-classes", "css", "lint", "linter", "stylelint", "stylelint-plugin"],
6+
"homepage": "https://github.com/wantedly/unused-classes#readme",
7+
"bugs": {
8+
"url": "https://github.com/wantedly/unused-classes/issues"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "https://github.com/wantedly/unused-classes.git"
13+
},
14+
"license": "MIT",
15+
"author": "Wantedly, Inc. <[email protected]>",
16+
"contributors": [
17+
"Masaki Hara <[email protected]>"
18+
],
419
"main": "./dist/index.js",
20+
"files": ["dist/**/*"],
521
"scripts": {
622
"build": "$npm_execpath build:babel && $npm_execpath tsc",
723
"build:babel": "babel -x .ts -d dist src --ignore 'src/**/*.test.ts'",

packages/unused-classes/package.json

+17
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,24 @@
11
{
22
"name": "unused-classes",
33
"version": "0.1.0",
4+
"description": "A CLI tool to enumerate class names and ids in use",
5+
"keywords": ["unused-classes", "css", "cli", "utilities"],
6+
"homepage": "https://github.com/wantedly/unused-classes#readme",
7+
"bugs": {
8+
"url": "https://github.com/wantedly/unused-classes/issues"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "https://github.com/wantedly/unused-classes.git"
13+
},
14+
"license": "MIT",
15+
"author": "Wantedly, Inc. <[email protected]>",
16+
"contributors": [
17+
"Masaki Hara <[email protected]>"
18+
],
419
"main": "./dist/index.js",
20+
"files": ["dist/**/*"],
21+
"bin": "./dist/index.js",
522
"scripts": {
623
"build": "$npm_execpath build:babel && $npm_execpath tsc",
724
"build:babel": "babel -x .ts -d dist src --ignore 'src/**/*.test.ts'",

0 commit comments

Comments
 (0)