.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / unherit / package.json
1 {
2   "name": "unherit",
3   "version": "1.1.3",
4   "description": "Clone a constructor without affecting the super-class",
5   "license": "MIT",
6   "keywords": [
7     "clone",
8     "super",
9     "class",
10     "constructor"
11   ],
12   "repository": "wooorm/unherit",
13   "bugs": "https://github.com/wooorm/unherit/issues",
14   "funding": {
15     "type": "github",
16     "url": "https://github.com/sponsors/wooorm"
17   },
18   "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
19   "contributors": [
20     "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
21   ],
22   "files": [
23     "index.js"
24   ],
25   "dependencies": {
26     "inherits": "^2.0.0",
27     "xtend": "^4.0.0"
28   },
29   "devDependencies": {
30     "browserify": "^16.0.0",
31     "nyc": "^15.0.0",
32     "prettier": "^1.0.0",
33     "remark-cli": "^7.0.0",
34     "remark-preset-wooorm": "^6.0.0",
35     "tape": "^4.0.0",
36     "tinyify": "^2.0.0",
37     "xo": "^0.25.0"
38   },
39   "scripts": {
40     "format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
41     "build-bundle": "browserify . -s unherit -o unherit.js",
42     "build-mangle": "browserify . -s unherit -p tinyify -o unherit.min.js",
43     "build": "npm run build-bundle && npm run build-mangle",
44     "test-api": "node test",
45     "test-coverage": "nyc --reporter lcov tape test.js",
46     "test": "npm run format && npm run build && npm run test-coverage"
47   },
48   "prettier": {
49     "tabWidth": 2,
50     "useTabs": false,
51     "singleQuote": true,
52     "bracketSpacing": false,
53     "semi": false,
54     "trailingComma": "none"
55   },
56   "xo": {
57     "prettier": true,
58     "esnext": false,
59     "rules": {
60       "unicorn/prefer-reflect-apply": "off",
61       "guard-for-in": "off"
62     },
63     "ignores": [
64       "unherit.js"
65     ]
66   },
67   "remarkConfig": {
68     "plugins": [
69       "preset-wooorm"
70     ]
71   }
72 }