1 | {
|
2 | "name": "typescript-estree",
|
3 | "description": "A parser that converts TypeScript source code into an ESTree compatible form",
|
4 | "homepage": "https://github.com/JamesHenry/typescript-estree",
|
5 | "main": "dist/parser.js",
|
6 | "version": "18.1.0",
|
7 | "files": [
|
8 | "dist",
|
9 | "README.md",
|
10 | "LICENSE"
|
11 | ],
|
12 | "engines": {
|
13 | "node": ">=6.14.0"
|
14 | },
|
15 | "repository": "JamesHenry/typescript-estree",
|
16 | "bugs": {
|
17 | "url": "https://github.com/JamesHenry/typescript-estree/issues"
|
18 | },
|
19 | "license": "BSD-2-Clause",
|
20 | "devDependencies": {
|
21 | "@babel/code-frame": "7.0.0",
|
22 | "@babel/parser": "7.2.3",
|
23 | "@commitlint/cli": "^7.1.2",
|
24 | "@commitlint/config-conventional": "^7.1.2",
|
25 | "@commitlint/travis-cli": "^7.1.2",
|
26 | "@types/babel-code-frame": "^6.20.1",
|
27 | "@types/jest": "^23.3.9",
|
28 | "@types/lodash.isplainobject": "^4.0.4",
|
29 | "@types/lodash.unescape": "^4.0.4",
|
30 | "@types/node": "^10.12.2",
|
31 | "@types/semver": "^5.5.0",
|
32 | "@types/shelljs": "^0.8.0",
|
33 | "cz-conventional-changelog": "2.1.0",
|
34 | "glob": "7.1.2",
|
35 | "husky": "0.14.3",
|
36 | "jest": "23.6.0",
|
37 | "lint-staged": "7.3.0",
|
38 | "lodash.isplainobject": "4.0.6",
|
39 | "prettier": "^1.14.3",
|
40 | "semantic-release": "^15.9.16",
|
41 | "shelljs": "0.8.2",
|
42 | "travis-deploy-once": "^5.0.8",
|
43 | "ts-jest": "^23.10.4",
|
44 | "typescript": "~3.2.1"
|
45 | },
|
46 | "keywords": [
|
47 | "ast",
|
48 | "estree",
|
49 | "ecmascript",
|
50 | "javascript",
|
51 | "typescript",
|
52 | "parser",
|
53 | "syntax"
|
54 | ],
|
55 | "scripts": {
|
56 | "build": "tsc",
|
57 | "test": "jest --coverage",
|
58 | "unit-tests": "jest \"./tests/lib/.*\"",
|
59 | "ast-alignment-tests": "jest spec.ts",
|
60 | "precommit": "npm test && lint-staged",
|
61 | "cz": "git-cz",
|
62 | "commitmsg": "commitlint -E GIT_PARAMS",
|
63 | "check-format": "prettier --list-different \"./**/*.{ts,js,json,md}\"",
|
64 | "semantic-release": "semantic-release",
|
65 | "travis-deploy-once": "travis-deploy-once"
|
66 | },
|
67 | "dependencies": {
|
68 | "lodash.unescape": "4.0.1",
|
69 | "semver": "5.5.0"
|
70 | },
|
71 | "peerDependencies": {
|
72 | "typescript": "*"
|
73 | },
|
74 | "lint-staged": {
|
75 | "*.{ts,js,json,md}": [
|
76 | "prettier --write",
|
77 | "git add"
|
78 | ]
|
79 | },
|
80 | "config": {
|
81 | "commitizen": {
|
82 | "path": "./node_modules/cz-conventional-changelog"
|
83 | }
|
84 | },
|
85 | "commitlint": {
|
86 | "extends": [
|
87 | "@commitlint/config-conventional"
|
88 | ]
|
89 | }
|
90 | }
|