UNPKG

2.37 kBJSONView Raw
1{
2 "name": "unified-args",
3 "version": "8.1.0",
4 "description": "Create CLIs for unified processors",
5 "license": "MIT",
6 "keywords": [
7 "unified",
8 "processor",
9 "engine",
10 "cli",
11 "arguments"
12 ],
13 "repository": "unifiedjs/unified-args",
14 "bugs": "https://github.com/unifiedjs/unified-args/issues",
15 "funding": {
16 "type": "opencollective",
17 "url": "https://opencollective.com/unified"
18 },
19 "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
20 "contributors": [
21 "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
22 "Christian Murphy <christian.murphy.42@gmail.com"
23 ],
24 "files": [
25 "index.js",
26 "types/index.d.ts",
27 "lib/"
28 ],
29 "types": "types/index.d.ts",
30 "dependencies": {
31 "camelcase": "^5.0.0",
32 "chalk": "^3.0.0",
33 "chokidar": "^3.0.0",
34 "fault": "^1.0.2",
35 "json5": "^2.0.0",
36 "minimist": "^1.2.0",
37 "text-table": "^0.2.0",
38 "unified-engine": "^8.0.0"
39 },
40 "devDependencies": {
41 "bail": "^1.0.0",
42 "dtslint": "^3.0.0",
43 "execa": "^4.0.0",
44 "figures": "^3.0.0",
45 "nyc": "^15.0.0",
46 "prettier": "^2.0.0",
47 "remark": "^12.0.0",
48 "remark-cli": "^8.0.0",
49 "remark-preset-wooorm": "^7.0.0",
50 "strip-ansi": "^6.0.0",
51 "tape": "^5.0.0",
52 "touch": "^3.0.0",
53 "unified": "^9.0.0",
54 "vfile-reporter-json": "^2.0.0",
55 "xo": "^0.32.0"
56 },
57 "scripts": {
58 "format": "remark . -qfo && prettier --write \"**/*.{js,ts}\" && xo --fix --ignore types",
59 "test-api": "node test",
60 "test-coverage": "nyc --reporter lcov tape test/index.js",
61 "test-types": "dtslint types",
62 "test": "npm run format && npm run test-coverage && npm run test-types"
63 },
64 "prettier": {
65 "tabWidth": 2,
66 "useTabs": false,
67 "singleQuote": true,
68 "bracketSpacing": false,
69 "semi": false,
70 "trailingComma": "none"
71 },
72 "xo": {
73 "prettier": true,
74 "esnext": false,
75 "rules": {
76 "unicorn/no-fn-reference-in-iterator": "off",
77 "unicorn/string-content": "off",
78 "guard-for-in": "off"
79 },
80 "ignores": [
81 "**/*.ts"
82 ]
83 },
84 "nyc": {
85 "check-coverage": true,
86 "lines": 100,
87 "functions": 100,
88 "branches": 100
89 },
90 "remarkConfig": {
91 "plugins": [
92 "preset-wooorm",
93 [
94 "toc",
95 {
96 "heading": "contents"
97 }
98 ]
99 ]
100 }
101}