This repository was archived by the owner on Jan 19, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathpackage.json
65 lines (65 loc) · 1.46 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
{
"name": "typescript-eslint-parser",
"description": "An Esprima-style parser for TypeScript",
"author": "Nicholas C. Zakas <[email protected]>",
"homepage": "https://github.com/eslint/espree",
"main": "parser.js",
"version": "0.1.0-alpha.0",
"files": [
"lib",
"parser.js"
],
"engines": {
"node": ">=0.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/eslint/typescript-eslint-parser.git"
},
"bugs": {
"url": "https://github.com/eslint/typescript-eslint-parser/issues"
},
"licenses": [
{
"type": "BSD",
"url": "http://github.com/nzakas/espree/raw/master/LICENSE"
}
],
"devDependencies": {
"chai": "3.5.0",
"dateformat": "1.0.11",
"eslint": "2.2.0",
"eslint-config-eslint": "3.0.0",
"eslint-release": "0.3.0",
"istanbul": "0.4.2",
"leche": "2.1.1",
"mocha": "2.0.1",
"npm-license": "0.3.1",
"semver": "5.1.0",
"shelljs": "0.6.0",
"shelljs-nodecli": "0.1.1",
"typescript": "1.8.7"
},
"keywords": [
"ast",
"ecmascript",
"javascript",
"typescript",
"parser",
"syntax",
"eslint"
],
"scripts": {
"test": "node Makefile.js test",
"lint": "node Makefile.js lint",
"release": "eslint-release",
"alpharelease": "eslint-prerelease alpha",
"betarelease": "eslint-prerelease beta"
},
"dependencies": {
"object-assign": "4.0.1"
},
"peerDependencies": {
"typescript": "^1.8.7"
}
}