Skip to content

Commit 66eb6db

Browse files
committed
Refactor package.json
1 parent 1e881d0 commit 66eb6db

File tree

1 file changed

+32
-18
lines changed

1 file changed

+32
-18
lines changed

package.json

Lines changed: 32 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,29 @@
11
{
22
"name": "hast-util-to-dom",
33
"version": "1.1.0",
4-
"description": "Transform HAST to DOM",
4+
"description": "hast utility to transform to the DOM",
5+
"license": "ISC",
6+
"keywords": [
7+
"unist",
8+
"hast",
9+
"util",
10+
"utility",
11+
"rehype",
12+
"dom",
13+
"html"
14+
],
15+
"repository": "syntax-tree/hast-util-to-dom",
16+
"bugs": "https://github.com/syntax-tree/hast-util-to-dom/issues",
17+
"author": "Keith McKnight <[email protected]> (https://keith.mcknig.ht)",
18+
"contributors": [
19+
"Keith McKnight <[email protected]> (https://keith.mcknig.ht)",
20+
"Titus Wormer <[email protected]> (https://wooorm.com)"
21+
],
522
"main": "dist/hast-util-to-dom.js",
623
"module": "dist/hast-util-to-dom.mjs",
7-
"repository": "https://github.com/syntax-tree/hast-util-to-dom",
8-
"author": "Keith McKnight <[email protected]> (https://keith.mcknig.ht)",
9-
"license": "ISC",
10-
"scripts": {
11-
"clean": "rm -rf dist",
12-
"build": "rollup -c",
13-
"lint": "eslint .",
14-
"test": "jest",
15-
"test:karma": "karma start --single-run --browsers ChromeHeadless,FirefoxHeadless,Safari karma.conf.js",
16-
"test:karma:chrome": "karma start --single-run --browsers ChromeHeadless karma.conf.js",
17-
"test:karma:firefox": "karma start --single-run --browsers FirefoxHeadless karma.conf.js",
18-
"test:karma:safari": "karma start --single-run --browsers Safari karma.conf.js",
19-
"test:dev": "jest --watchAll"
20-
},
24+
"files": [
25+
"dist/"
26+
],
2127
"dependencies": {
2228
"property-information": "^5.1.0"
2329
},
@@ -47,7 +53,15 @@
4753
"rollup-plugin-commonjs": "^10.0.0",
4854
"rollup-plugin-node-resolve": "^5.0.0"
4955
},
50-
"files": [
51-
"dist"
52-
]
56+
"scripts": {
57+
"clean": "rm -rf dist",
58+
"build": "rollup -c",
59+
"lint": "eslint .",
60+
"test": "jest",
61+
"test:karma": "karma start --single-run --browsers ChromeHeadless,FirefoxHeadless,Safari karma.conf.js",
62+
"test:karma:chrome": "karma start --single-run --browsers ChromeHeadless karma.conf.js",
63+
"test:karma:firefox": "karma start --single-run --browsers FirefoxHeadless karma.conf.js",
64+
"test:karma:safari": "karma start --single-run --browsers Safari karma.conf.js",
65+
"test:dev": "jest --watchAll"
66+
}
5367
}

0 commit comments

Comments
 (0)