-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
35 lines (35 loc) · 855 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
{
"name": "transcribe",
"version": "1.1.2",
"description": "Generate Markdown documentation from code comments",
"license": "MIT",
"homepage": "https://github.com/davidchambers/transcribe",
"bugs": "https://github.com/davidchambers/transcribe/issues",
"repository": {
"type": "git",
"url": "git://github.com/davidchambers/transcribe.git"
},
"bin": "./bin/transcribe",
"files": [
"/LICENSE",
"/README.md",
"/bin/transcribe",
"/package.json"
],
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"commander": "2.8.x",
"sanctuary": "3.1.0"
},
"devDependencies": {
"sanctuary-scripts": "6.0.x"
},
"scripts": {
"doctest": "sanctuary-doctest",
"lint": "sanctuary-lint",
"release": "sanctuary-release",
"test": "npm run lint && sanctuary-test && npm run doctest"
}
}