forked from evilpie/jsctags
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (51 loc) · 1.35 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
47
48
49
50
51
{
"name": "ctags",
"description": "Intelligent code indexing for JavaScript",
"version": "0.1.0",
"keywords": [ "ctags", "tags" ],
"maintainers": [
{
"name": "Patrick Walton",
"email": "[email protected]",
"web": "http://pcwalton.blogspot.com/"
}
],
"contributors": [
{
"name": "Patrick Walton",
"email": "[email protected]",
"web": "http://pcwalton.blogspot.com/"
}
],
"bugs": "http://github.com/pcwalton/jsctags/issues",
"licenses": [
{
"type": "MPL",
"url": "http://www.mozilla.org/MPL/MPL-1.1.html"
},
{
"type": "GPLv2",
"url": "http://www.gnu.org/licenses/gpl-2.0.html"
},
{
"type": "LGPLv2.1",
"url": "http://www.gnu.org/licenses/lgpl-2.1.html"
}
],
"repositories": [
{
"type": "git",
"url": "git://github.com/pcwalton/jsctags.git"
}
],
"dependencies": {},
"homepage": "http://github.com/pcwalton/jsctags/",
"engine": [ "node" ],
"directories": [ "bin", "lib", "test" ],
"implements": [ "CommonJS/Modules/1.0" ],
"scripts": {
"install": "install.js",
"serve": "serve.js",
"uninstall": "uninstall.js"
}
}