-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 899 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
{
"name": "testable-docs",
"version": "1.0.0",
"description": "Parses your code, checks if your docs are complete, exports them as structured data",
"main": "src/TestableDocs.js",
"scripts": {
"test": "./node_modules/.bin/section ./test/100*.js",
"mocha": "./node_modules/mocha/bin/mocha --reporter spec ./test/200*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/distributed-systems/testable-docs.git"
},
"keywords": [
"docs",
"testable"
],
"author": "Michael van der Weg",
"license": "MIT",
"bugs": {
"url": "https://github.com/distributed-systems/testable-docs/issues"
},
"homepage": "https://github.com/distributed-systems/testable-docs#readme",
"dependencies": {
"ee-log": "^3.0.5",
"javascript-source-docs": "^1.0.0"
},
"devDependencies": {
"section-tests": "^1.3.1",
"mocha": "^4.1.0"
}
}