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
72 lines (72 loc) · 1.89 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
{
"name": "typescript-eslint-parser",
"description": "An Esprima-style parser for TypeScript",
"author": "Nicholas C. Zakas <[email protected]>",
"homepage": "https://github.com/eslint/typescript-eslint-parser",
"main": "parser.js",
"version": "10.0.0",
"files": [
"lib",
"parser.js"
],
"engines": {
"node": ">=4"
},
"repository": "eslint/typescript-eslint-parser",
"bugs": {
"url": "https://github.com/eslint/typescript-eslint-parser/issues"
},
"license": "BSD-2-Clause",
"devDependencies": {
"babel-code-frame": "6.26.0",
"babylon": "7.0.0-beta.34",
"dedent": "0.7.0",
"eslint": "4.13.1",
"eslint-config-eslint": "4.0.0",
"eslint-plugin-node": "5.2.1",
"eslint-release": "0.10.3",
"glob": "7.1.2",
"jest": "21.2.1",
"lodash.isplainobject": "4.0.6",
"npm-license": "0.3.3",
"shelljs": "0.7.8",
"shelljs-nodecli": "0.1.1",
"typescript": "~2.6.1"
},
"keywords": [
"ast",
"ecmascript",
"javascript",
"typescript",
"parser",
"syntax",
"eslint"
],
"scripts": {
"test": "node Makefile.js test && npm run integration-tests && npm run ast-alignment-tests",
"jest": "jest",
"ast-alignment-tests": "jest --config=./tests/ast-alignment/jest.config.js",
"integration-tests": "jest --config=./tests/integration/jest.config.js",
"lint": "node Makefile.js lint",
"release": "eslint-release",
"ci-release": "eslint-ci-release",
"gh-release": "eslint-gh-release",
"alpharelease": "eslint-prerelease alpha",
"betarelease": "eslint-prerelease beta"
},
"dependencies": {
"lodash.unescape": "4.0.1",
"semver": "5.4.1"
},
"peerDependencies": {
"typescript": "*"
},
"jest": {
"testRegex": "tests/lib/.+\\.js$",
"testPathIgnorePatterns": [],
"collectCoverage": true,
"coverageReporters": [
"text-summary"
]
}
}