.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / parse-entities / package.json
1 {
2   "name": "parse-entities",
3   "version": "1.2.2",
4   "description": "Parse HTML character references: fast, spec-compliant, positional information",
5   "license": "MIT",
6   "keywords": [
7     "parse",
8     "html",
9     "character",
10     "reference",
11     "entity",
12     "entities"
13   ],
14   "repository": "wooorm/parse-entities",
15   "bugs": "https://github.com/wooorm/parse-entities/issues",
16   "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
17   "contributors": [
18     "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
19   ],
20   "browser": {
21     "./decode-entity.js": "./decode-entity.browser.js"
22   },
23   "react-native": {
24     "./decode-entity.js": "./decode-entity.js"
25   },
26   "files": [
27     "index.js",
28     "decode-entity.js",
29     "decode-entity.browser.js"
30   ],
31   "dependencies": {
32     "character-entities": "^1.0.0",
33     "character-entities-legacy": "^1.0.0",
34     "character-reference-invalid": "^1.0.0",
35     "is-alphanumerical": "^1.0.0",
36     "is-decimal": "^1.0.0",
37     "is-hexadecimal": "^1.0.0"
38   },
39   "devDependencies": {
40     "browserify": "^16.0.0",
41     "nyc": "^14.0.0",
42     "prettier": "^1.12.1",
43     "remark-cli": "^6.0.0",
44     "remark-preset-wooorm": "^4.0.0",
45     "tape": "^4.2.0",
46     "tape-run": "^6.0.0",
47     "tinyify": "^2.4.3",
48     "xo": "^0.24.0"
49   },
50   "scripts": {
51     "format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
52     "build-bundle": "browserify . -s parseEntities > parse-entities.js",
53     "build-mangle": "browserify . -s parseEntities -p tinyify > parse-entities.min.js",
54     "build": "npm run build-bundle && npm run build-mangle",
55     "test-api": "node test",
56     "test-coverage": "nyc --reporter lcov tape test.js",
57     "test-browser": "browserify test.js | tape-run",
58     "test": "npm run format && npm run build && npm run test-coverage && npm run test-browser"
59   },
60   "nyc": {
61     "check-coverage": true,
62     "lines": 100,
63     "functions": 100,
64     "branches": 100
65   },
66   "prettier": {
67     "tabWidth": 2,
68     "useTabs": false,
69     "singleQuote": true,
70     "bracketSpacing": false,
71     "semi": false,
72     "trailingComma": "none"
73   },
74   "xo": {
75     "prettier": true,
76     "esnext": false,
77     "rules": {
78       "no-self-compare": "off",
79       "guard-for-in": "off",
80       "max-depth": "off"
81     },
82     "ignores": [
83       "parse-entities.js"
84     ]
85   },
86   "remarkConfig": {
87     "plugins": [
88       "preset-wooorm"
89     ]
90   }
91 }