UNPKG

1.63 kBJSONView Raw
1{
2 "name": "unist-util-visit",
3 "version": "1.1.2",
4 "description": "Recursively walk over unist nodes",
5 "license": "MIT",
6 "keywords": [
7 "unist",
8 "remark",
9 "markdown",
10 "retext",
11 "natural",
12 "language",
13 "node",
14 "visit",
15 "walk",
16 "util",
17 "utility"
18 ],
19 "repository": "https://github.com/syntax-tree/unist-util-visit",
20 "bugs": "https://github.com/syntax-tree/unist-util-visit/issues",
21 "author": "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)",
22 "contributors": [
23 "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)"
24 ],
25 "files": [
26 "index.js"
27 ],
28 "devDependencies": {
29 "browserify": "^14.0.0",
30 "esmangle": "^1.0.0",
31 "nyc": "^11.0.0",
32 "remark": "^7.0.0",
33 "remark-cli": "^3.0.0",
34 "remark-preset-wooorm": "^3.0.0",
35 "tape": "^4.5.1",
36 "xo": "^0.18.2"
37 },
38 "scripts": {
39 "build-md": "remark . -qfo",
40 "build-bundle": "browserify index.js --no-builtins -s unistUtilVisit > unist-util-visit.js",
41 "build-mangle": "esmangle unist-util-visit.js > unist-util-visit.min.js",
42 "build": "npm run build-md && npm run build-bundle && npm run build-mangle",
43 "lint": "xo",
44 "test-api": "node test",
45 "test-coverage": "nyc --reporter lcov tape test.js",
46 "test": "npm run build && npm run lint && npm run test-coverage"
47 },
48 "nyc": {
49 "check-coverage": true,
50 "lines": 100,
51 "functions": 100,
52 "branches": 100
53 },
54 "xo": {
55 "space": true,
56 "esnext": false,
57 "ignores": [
58 "unist-util-visit.js"
59 ]
60 },
61 "remarkConfig": {
62 "plugins": [
63 "preset-wooorm"
64 ]
65 }
66}