-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
76 lines (76 loc) · 2.14 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "tocsify",
"version": "1.0.10",
"description": "Generates a table of contents based on the structure of your docsify docs directory!",
"author": "Dani Roxberry <dani@makeschool.com> (https://droxey.com)",
"license": "MIT",
"main": "./lib/index.js",
"scripts": {
"clean": "rimraf lib",
"test": "npm run lint && npm run cover",
"test:prod": "cross-env BABEL_ENV=production npm run test",
"test:only": "mocha --require babel-core/register --require babel-polyfill --recursive --exit",
"test:watch": "npm test -- --watch",
"cover": "istanbul cover _mocha -- --require babel-core/register --require babel-polyfill --recursive --exit",
"lint": "eslint src test",
"build": "cross-env BABEL_ENV=production babel src --out-dir lib",
"prepare": "npm run clean && npm run lint && npm run test:prod && npm run build"
},
"files": [
"lib",
"src"
],
"bin": {
"tocsify": "./lib/index.js"
},
"keywords": [
"tocsify",
"docsify",
"npm-package",
"npm-module",
"table-of-contents",
"toc",
"markdown",
"cli",
"table",
"documentation",
"README",
"index"
],
"repository": {
"type": "git",
"url": "git+https://github.com/droxey/tocsify.git"
},
"bugs": {
"url": "https://github.com/droxey/tocsify/issues"
},
"homepage": "https://droxey.com/tocsify/#/index",
"dependencies": {
"glob": "^7.1.3",
"markdown-toc": "^1.2.0",
"meow": "^5.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-minify": "^0.3.0",
"chai": "^4.2.0",
"chai-files": "^1.4.0",
"chai-fs": "^2.0.0",
"cross-env": "^5.1.3",
"docsify-cli": "^4.2.1",
"eslint": "^5.14.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.12.4",
"eslint-watch": "^4.0.2",
"istanbul": "^1.0.0-alpha",
"mocha": "^5.2.0",
"rimraf": "^2.6.2"
}
}