-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.1 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
{
"name": "tagit",
"version": "1.1.2",
"description": "File tagging tool",
"main": "index.js",
"bin": {
"tagit": "./bin/tagit"
},
"scripts": {
"test": "./node_modules/.bin/mocha dist/test/ --recursive",
"prepublish": "./node_modules/.bin/tsd update && ./node_modules/.bin/tsd rebundle && cd src && ../node_modules/.bin/tsc",
"pretest": "./node_modules/.bin/tsd update && ./node_modules/.bin/tsd rebundle && cd src && ../node_modules/.bin/tsc"
},
"files": ["dist", "bin", "src"],
"keywords": [
"file",
"tag",
"tagging"
],
"author": {
"name": "Matias Surdi",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/msurdi/tagit"
},
"bugs": {
"url": "https://github.com/msurdi/tagit/issues"
},
"license": "MIT",
"dependencies": {
"commander": "2.6.0",
"findit": "2.0.0",
"source-map-support": "0.2.10",
"typescript": "1.5.0-alpha",
"underscore": "1.7.0",
"ncp": "2.0.0"
},
"devDependencies": {
"chai": "2.1.2",
"tsd": "0.6.0",
"mocha": "2.2.4",
"tmp": "0.0.25"
}
}