forked from gajus/gitdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.55 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
{
"name": "gitdown",
"description": "Github markdown preprocessor.",
"keywords": [
"github",
"markdown",
"table of contents",
"toc",
"include",
"variable",
"transclusion"
],
"version": "2.5.0",
"main": "./dist/index.js",
"bin": "./dist/bin/index.js",
"author": {
"name": "Gajus Kuizinas",
"email": "[email protected]",
"url": "http://gajus.com"
},
"repository": {
"type": "git",
"url": "https://github.com/gajus/gitdown"
},
"license": "BSD-3-Clause",
"scripts": {
"lint": "eslint ./src ./tests",
"build": "babel ./src --out-dir ./dist --copy-files",
"test": "npm run lint && mocha ./tests/**/*.js --compilers js:babel-register",
"readme": "node ./dist/bin/index.js ./.README/README.md --output-file ./README.md"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-preset-es2015-node4": "^2.1.0",
"babel-register": "^6.14.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"eslint-config-canonical": "^1.7.17",
"mocha": "^3.0.2",
"nock": "^8.0.0",
"require-new": "^1.1.0",
"sinon": "^2.0.0-pre.2"
},
"dependencies": {
"bluebird": "^3.4.4",
"deadlink": "^1.1.3",
"eslint": "^3.4.0",
"filesize": "^3.3.0",
"gitinfo": "^2.0.85",
"glob": "^7.0.6",
"jsonfile": "^2.3.1",
"lodash": "^4.15.0",
"markdown-contents": "^1.0.8",
"marked": "^0.3.6",
"moment": "^2.14.1",
"stack-trace": "^0.0.9",
"url-extractor": "^2.0.2",
"yargs": "^5.0.0"
}
}