forked from sergioramos/jsctags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.88 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "jsctags",
"version": "5.0.1",
"description": "jsctags generator",
"keywords": [
"ctags",
"jsctags",
"tern"
],
"homepage": "https://github.com/ramitos/jsctags",
"bugs": {
"url": "http://github.com/ramitos/jsctags/issues",
"email": "mail@sergioramos.me"
},
"license": "MIT",
"main": "src/parser.js",
"bin": {
"jsctags": "bin/jsctags",
"xjsctags": "bin/xjsctags"
},
"directories": {
"lib": "src",
"bin": "bin"
},
"repository": {
"type": "git",
"url": "git://github.com/ramitos/jsctags.git"
},
"scripts": {
"test": "NODE_ENV=test nyc node test",
"lint": "eslint .",
"coverage": "nyc report --reporter=text-lcov | codeclimate-test-reporter"
},
"dependencies": {
"acorn": "^3.0.4",
"async": "^2.0.0-rc.2",
"collect-stream": "^1.1.1",
"deepmerge": "^0.2.10",
"force-array": "^3.1.0",
"glob": "^7.0.3",
"lodash.clonedeep": "^4.3.2",
"lodash.defaults": "^4.0.1",
"lodash.flatten": "^4.1.1",
"lodash.get": "^4.1.2",
"lodash.includes": "^4.1.1",
"lodash.isarray": "^4.0.0",
"lodash.isfunction": "^3.0.8",
"lodash.isplainobject": "^4.0.3",
"lodash.isstring": "^4.0.1",
"lodash.isundefined": "^3.0.1",
"lodash.sortby": "^4.2.2",
"lodash.without": "^4.1.2",
"node-uuid": "^1.4.7",
"object-hash": "^1.1.2",
"once": "^1.3.3",
"optimist": "^0.6.1",
"tern": "^0.18.0",
"tern-react": "^0.1.0",
"tryor": "^0.1.2"
},
"devDependencies": {
"assert-diff": "^1.0.1",
"cli-color": "^1.1.0",
"codeclimate-test-reporter": "^0.3.1",
"eslint": "^2.6.0",
"eslint-config-semistandard": "^6.0.1",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-react": "^4.2.3",
"eslint-plugin-standard": "^1.3.2",
"longjohn": "^0.2.11",
"md5": "^2.1.0",
"nyc": "^6.1.1"
}
}