forked from sergioramos/jsctags
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.32 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
52
53
54
55
56
57
{
"name": "es-ctags",
"version": "0.0.2",
"description": "CTags generator",
"keywords": [
"ctags",
"es-ctags",
"tern",
"vim",
"emacs"
],
"homepage": "https://github.com/okcompute/es-ctags",
"bugs": {
"url": "http://github.com/okcompute/es-ctags/issues",
"email": "okcompute@icloud.com"
},
"license": "MIT",
"bin": {
"es-ctags": "bin/es-ctags"
},
"repository": {
"type": "git",
"url": "git://github.com/okcompute/es-ctags.git"
},
"scripts": {
"test": "NODE_ENV=test mocha --recursive --use_strict",
"test:watch": "npm test -- --watch",
"lint": "eslint ."
},
"dependencies": {
"async": "^1.5.0",
"commander": "^2.9.0",
"diveSync": "^0.3.0",
"glob-to-regexp": "^0.1.0",
"is-string": "^1.0.4",
"lodash.clonedeep": "^3.0.2",
"lodash.defaults": "^3.1.2",
"lodash.get": "^3.7.0",
"lodash.includes": "^3.1.3",
"lodash.isarray": "^3.0.4",
"lodash.isfunction": "^3.0.6",
"lodash.isplainobject": "^3.2.0",
"lodash.isundefined": "^3.0.1",
"lodash.sortby": "^3.1.5",
"lodash.without": "^3.2.1",
"object-hash": "^0.9.2",
"tern": "^0.18.0",
"uuid": "^3.0.0"
},
"devDependencies": {
"eslint": "^2.1.0",
"expect": "^1.14.0",
"glob": "^6.0.1",
"mocha": "^2.4.5",
"tmp": "0.0.28"
}
}