.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / parse-entities / package.json
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/parse-entities/package.json b/.config/coc/extensions/node_modules/coc-prettier/node_modules/parse-entities/package.json
new file mode 100644 (file)
index 0000000..a5e1bc4
--- /dev/null
@@ -0,0 +1,91 @@
+{
+  "name": "parse-entities",
+  "version": "1.2.2",
+  "description": "Parse HTML character references: fast, spec-compliant, positional information",
+  "license": "MIT",
+  "keywords": [
+    "parse",
+    "html",
+    "character",
+    "reference",
+    "entity",
+    "entities"
+  ],
+  "repository": "wooorm/parse-entities",
+  "bugs": "https://github.com/wooorm/parse-entities/issues",
+  "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
+  "contributors": [
+    "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
+  ],
+  "browser": {
+    "./decode-entity.js": "./decode-entity.browser.js"
+  },
+  "react-native": {
+    "./decode-entity.js": "./decode-entity.js"
+  },
+  "files": [
+    "index.js",
+    "decode-entity.js",
+    "decode-entity.browser.js"
+  ],
+  "dependencies": {
+    "character-entities": "^1.0.0",
+    "character-entities-legacy": "^1.0.0",
+    "character-reference-invalid": "^1.0.0",
+    "is-alphanumerical": "^1.0.0",
+    "is-decimal": "^1.0.0",
+    "is-hexadecimal": "^1.0.0"
+  },
+  "devDependencies": {
+    "browserify": "^16.0.0",
+    "nyc": "^14.0.0",
+    "prettier": "^1.12.1",
+    "remark-cli": "^6.0.0",
+    "remark-preset-wooorm": "^4.0.0",
+    "tape": "^4.2.0",
+    "tape-run": "^6.0.0",
+    "tinyify": "^2.4.3",
+    "xo": "^0.24.0"
+  },
+  "scripts": {
+    "format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
+    "build-bundle": "browserify . -s parseEntities > parse-entities.js",
+    "build-mangle": "browserify . -s parseEntities -p tinyify > parse-entities.min.js",
+    "build": "npm run build-bundle && npm run build-mangle",
+    "test-api": "node test",
+    "test-coverage": "nyc --reporter lcov tape test.js",
+    "test-browser": "browserify test.js | tape-run",
+    "test": "npm run format && npm run build && npm run test-coverage && npm run test-browser"
+  },
+  "nyc": {
+    "check-coverage": true,
+    "lines": 100,
+    "functions": 100,
+    "branches": 100
+  },
+  "prettier": {
+    "tabWidth": 2,
+    "useTabs": false,
+    "singleQuote": true,
+    "bracketSpacing": false,
+    "semi": false,
+    "trailingComma": "none"
+  },
+  "xo": {
+    "prettier": true,
+    "esnext": false,
+    "rules": {
+      "no-self-compare": "off",
+      "guard-for-in": "off",
+      "max-depth": "off"
+    },
+    "ignores": [
+      "parse-entities.js"
+    ]
+  },
+  "remarkConfig": {
+    "plugins": [
+      "preset-wooorm"
+    ]
+  }
+}