source: node_modules/hast-util-parse-selector/package.json

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 1.9 KB
Line 
1{
2 "name": "hast-util-parse-selector",
3 "version": "2.2.5",
4 "description": "hast utility to create an element from a simple CSS selector",
5 "license": "MIT",
6 "keywords": [
7 "unist",
8 "hast",
9 "hast-util",
10 "util",
11 "utility",
12 "html",
13 "css",
14 "selector",
15 "parse"
16 ],
17 "repository": "syntax-tree/hast-util-parse-selector",
18 "bugs": "https://github.com/syntax-tree/hast-util-parse-selector/issues",
19 "funding": {
20 "type": "opencollective",
21 "url": "https://opencollective.com/unified"
22 },
23 "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
24 "contributors": [
25 "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
26 ],
27 "files": [
28 "index.js"
29 ],
30 "dependencies": {},
31 "devDependencies": {
32 "browserify": "^17.0.0",
33 "nyc": "^15.0.0",
34 "prettier": "^2.0.0",
35 "remark-cli": "^9.0.0",
36 "remark-preset-wooorm": "^8.0.0",
37 "tape": "^5.0.0",
38 "tinyify": "^3.0.0",
39 "xo": "^0.34.0"
40 },
41 "scripts": {
42 "format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
43 "build-bundle": "browserify . -s hastUtilParseSelector > hast-util-parse-selector.js",
44 "build-mangle": "browserify . -s hastUtilParseSelector -p tinyify > hast-util-parse-selector.min.js",
45 "build": "npm run build-bundle && npm run build-mangle",
46 "test-api": "node test",
47 "test-coverage": "nyc --reporter lcov tape test.js",
48 "test": "npm run format && npm run build && npm run test-coverage"
49 },
50 "prettier": {
51 "tabWidth": 2,
52 "useTabs": false,
53 "singleQuote": true,
54 "bracketSpacing": false,
55 "semi": false,
56 "trailingComma": "none"
57 },
58 "xo": {
59 "prettier": true,
60 "esnext": false,
61 "ignores": [
62 "hast-util-parse-selector.js"
63 ]
64 },
65 "nyc": {
66 "check-coverage": true,
67 "lines": 100,
68 "functions": 100,
69 "branches": 100
70 },
71 "remarkConfig": {
72 "plugins": [
73 "preset-wooorm"
74 ]
75 }
76}
Note: See TracBrowser for help on using the repository browser.