-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) Β· 907 Bytes
/
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
{
"name": "documentor",
"version": "0.1.3",
"description": "Documentation generator",
"main": "src",
"license": "MIT",
"author": {
"name": "Fabien Sa"
},
"repository": "https://github.com/BafS/Documentor",
"bin": {
"documentor": "./bin/documentor.js"
},
"scripts": {
"test": "ava -v",
"style": "eslint src/** bin/**",
"build:doc": "node bin/documentor docs -o docs/index.html"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"chokidar": "^3.4.0",
"handlebars": "^4.0.11",
"inquirer": "^7.1.0",
"js-yaml": "^3.12.0",
"markdown-it": "^11.0.0",
"postcss-preset-env": "^6.7.0",
"yargs": "^15.3.0"
},
"devDependencies": {
"ava": "^3.8.2",
"eslint": "^7.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.14.0"
},
"engines": {
"node": ">=7.6.0"
}
}