forked from ternjs/tern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 817 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
{
"name": "tern",
"license": "MIT",
"version": "0.20.0",
"author": "Marijn Haverbeke <marijnh@gmail.com>",
"description": "A JavaScript code analyzer for deep, cross-editor language support",
"main": "lib/tern.js",
"bin": "./bin/tern",
"repository": {
"type": "git",
"url": "git://github.com/ternjs/tern.git"
},
"scripts": {
"test": "node ./bin/test"
},
"dependencies": {
"acorn": "^3.2.0",
"enhanced-resolve": "^2.2.2",
"glob": "3",
"minimatch": "0.2",
"resolve-from": "2.0.0"
},
"devDependencies": {
"codemirror": "git://github.com/codemirror/CodeMirror.git"
},
"blint": {
"allowedGlobals": [
"tern",
"acorn",
"define",
"clearTimeout",
"setTimeout",
"__dirname",
"global",
"process"
]
}
}