.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stringify-entities / package.json
1 {
2   "name": "stringify-entities",
3   "version": "1.3.2",
4   "description": "Encode HTML character references and character entities",
5   "license": "MIT",
6   "keywords": [
7     "stringify",
8     "encode",
9     "escape",
10     "html",
11     "character",
12     "reference",
13     "entity",
14     "entities"
15   ],
16   "repository": "wooorm/stringify-entities",
17   "bugs": "https://github.com/wooorm/stringify-entities/issues",
18   "author": "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)",
19   "contributors": [
20     "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)"
21   ],
22   "files": [
23     "dangerous.json",
24     "index.js"
25   ],
26   "dependencies": {
27     "character-entities-html4": "^1.0.0",
28     "character-entities-legacy": "^1.0.0",
29     "is-alphanumerical": "^1.0.0",
30     "is-hexadecimal": "^1.0.0"
31   },
32   "devDependencies": {
33     "browserify": "^16.0.0",
34     "character-entities": "^1.0.0",
35     "esmangle": "^1.0.0",
36     "nyc": "^11.0.0",
37     "remark-cli": "^5.0.0",
38     "remark-preset-wooorm": "^4.0.0",
39     "tape": "^4.0.0",
40     "xo": "^0.20.0"
41   },
42   "scripts": {
43     "generate": "node build",
44     "format": "remark . -qfo && prettier --write '**/*.js' && xo --fix",
45     "build-bundle": "browserify index.js --bare -s stringifyEntities > stringify-entities.js",
46     "build-mangle": "esmangle stringify-entities.js > stringify-entities.min.js",
47     "build": "npm run build-bundle && npm run build-mangle",
48     "test-api": "node test",
49     "test-coverage": "nyc --reporter lcov tape test.js",
50     "test": "npm run generate && npm run format && npm run build && npm run test-coverage"
51   },
52   "nyc": {
53     "check-coverage": true,
54     "lines": 100,
55     "functions": 100,
56     "branches": 100
57   },
58   "prettier": {
59     "tabWidth": 2,
60     "useTabs": false,
61     "singleQuote": true,
62     "bracketSpacing": false,
63     "semi": false,
64     "trailingComma": "none"
65   },
66   "xo": {
67     "prettier": true,
68     "esnext": false,
69     "rules": {
70       "no-var": "off",
71       "unicorn/number-literal-case": "off",
72       "prefer-arrow-callback": "off",
73       "guard-for-in": "off"
74     },
75     "ignores": [
76       "stringify-entities.js"
77     ]
78   },
79   "remarkConfig": {
80     "plugins": [
81       "preset-wooorm"
82     ]
83   }
84 }