forked from prettier/angular-estree-parser
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.07 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
{
"name": "angular-estree-parser",
"version": "8.0.0",
"description": "A parser that converts Angular source code into an ESTree-compatible form",
"keywords": [],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": "https://github.com/prettier/angular-estree-parser",
"homepage": "https://github.com/prettier/angular-estree-parser#readme",
"author": {
"name": "Ika",
"email": "[email protected]",
"url": "https://github.com/ikatyang"
},
"license": "MIT",
"scripts": {
"clean": "del-cli ./lib",
"prepare": "yarn run build",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "run-p \"lint:*\"",
"lint:eslint": "eslint --ext=.ts,.js,.cjs .",
"lint:prettier": "prettier --check src",
"fix": "run-s \"fix:*\"",
"fix:eslint": "yarn lint:eslint --fix",
"fix:prettier": "yarn lint:prettier --write",
"build": "yarn clean && tsc -p ./tsconfig.build.json",
"release": "yarn build && standard-version"
},
"dependencies": {
"lines-and-columns": "^2.0.3",
"tslib": "^2.6.2"
},
"devDependencies": {
"@angular/compiler": "17.0.0-rc.2",
"@babel/code-frame": "7.22.13",
"@babel/parser": "7.23.0",
"@babel/types": "7.23.0",
"@types/babel-types": "7.0.13",
"@types/babel__code-frame": "7.0.5",
"@types/jest": "29.5.7",
"@types/prettier": "3.0.0",
"@typescript-eslint/eslint-plugin": "6.9.1",
"@typescript-eslint/parser": "6.9.1",
"del-cli": "5.1.0",
"eslint": "8.53.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.29.0",
"jest": "29.7.0",
"jest-snapshot-serializer-raw": "1.2.0",
"npm-run-all": "4.1.5",
"prettier": "3.0.3",
"standard-version": "9.5.0",
"ts-jest": "29.1.1",
"typescript": "5.2.2"
},
"peerDependencies": {
"@angular/compiler": "^17.0.0-rc.2"
},
"engines": {
"node": ">= 16"
},
"files": [
"lib"
],
"type": "module",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"packageManager": "[email protected]"
}