-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 919 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": "taskpaper-document",
"version": "0.0.1",
"description": "Taskpaper document parser and builder",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "node doc/build.js",
"lint": "eslint test/**/**/**/*.js lib/**/**/**/*.js",
"test": "tape test/**/**/**/*.test.js lib/**/**/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bugeats/taskpaper-document.git"
},
"keywords": [
"taskpaper",
"parser",
"lexer",
"builder",
"todos",
"tasks",
"document"
],
"author": "Chadwick Dahlquist",
"license": "MIT",
"bugs": {
"url": "https://github.com/bugeats/taskpaper-document/issues"
},
"homepage": "https://github.com/bugeats/taskpaper-document#readme",
"devDependencies": {
"eslint": "^2.5.3",
"handlebars": "^4.0.5",
"tape": "^4.5.1"
},
"dependencies": {}
}