This repository has been archived by the owner on Jan 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
90 lines (90 loc) · 2.26 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "typescript-estree",
"description": "A parser that converts TypeScript source code into an ESTree compatible form",
"homepage": "https://github.com/JamesHenry/typescript-estree",
"main": "dist/parser.js",
"version": "0.0.0-development",
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=6.14.0"
},
"repository": "JamesHenry/typescript-estree",
"bugs": {
"url": "https://github.com/JamesHenry/typescript-estree/issues"
},
"license": "BSD-2-Clause",
"devDependencies": {
"@babel/code-frame": "7.0.0",
"@babel/parser": "7.2.3",
"@commitlint/cli": "^7.1.2",
"@commitlint/config-conventional": "^7.1.2",
"@commitlint/travis-cli": "^7.1.2",
"@types/babel-code-frame": "^6.20.1",
"@types/jest": "^23.3.9",
"@types/lodash.isplainobject": "^4.0.4",
"@types/lodash.unescape": "^4.0.4",
"@types/node": "^10.12.2",
"@types/semver": "^5.5.0",
"@types/shelljs": "^0.8.0",
"cz-conventional-changelog": "2.1.0",
"glob": "7.1.2",
"husky": "0.14.3",
"jest": "23.6.0",
"lint-staged": "7.3.0",
"lodash.isplainobject": "4.0.6",
"prettier": "^1.14.3",
"semantic-release": "^15.9.16",
"shelljs": "0.8.2",
"travis-deploy-once": "^5.0.8",
"ts-jest": "^23.10.4",
"typescript": "~3.2.1"
},
"keywords": [
"ast",
"estree",
"ecmascript",
"javascript",
"typescript",
"parser",
"syntax"
],
"scripts": {
"build": "tsc",
"test": "jest --coverage",
"unit-tests": "jest \"./tests/lib/.*\"",
"ast-alignment-tests": "jest spec.ts",
"precommit": "npm test && lint-staged",
"cz": "git-cz",
"commitmsg": "commitlint -E GIT_PARAMS",
"check-format": "prettier --list-different \"./**/*.{ts,js,json,md}\"",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"dependencies": {
"lodash.unescape": "4.0.1",
"semver": "5.5.0"
},
"peerDependencies": {
"typescript": "*"
},
"lint-staged": {
"*.{ts,js,json,md}": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}