-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
47 lines (47 loc) · 949 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
40
41
42
43
44
45
46
47
{
"author": "Ahmad Assaf",
"name": "code-notes",
"description": "Tool to summarise all code annotation like TODO or FIXME",
"version": "1.0.4",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/ahmadassaf/code-notes.git"
},
"scripts": {
"test":"notes",
"test:clean":"node ./bin/notes . --git-ignore .gitignore"
},
"main": "./lib/notes",
"engines": {
"node": ">= v0.4.7"
},
"contributors": [
{
"name": "Ahmad Assaf",
"email": "[email protected]"
}
],
"dependencies": {
"byline": "5.0.0",
"chalk": "1.1.3",
"commander": "^2.9.0",
"event-stream": "3.3.4",
"lodash": "^4.17.4",
"multimatch": "^2.1.0",
"readdirp": "2.1.0"
},
"devDependencies": {
"coffee-script": ">= 1.1.1"
},
"bin": {
"notes": "./bin/notes"
},
"keywords": [
"notes",
"annotate",
"todo",
"fixme"
],
"preferGlobal": "true"
}