-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
68 lines (68 loc) · 2 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
{
"name": "angular-estree-parser",
"version": "10.2.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",
"lint:prettier": "prettier --check .",
"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"
},
"devDependencies": {
"@angular/compiler": "19.0.0",
"@babel/code-frame": "7.26.2",
"@babel/parser": "7.26.2",
"@babel/types": "7.26.0",
"@types/babel__code-frame": "7.0.6",
"@types/jest": "29.5.14",
"del-cli": "6.0.0",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-unicorn": "56.0.1",
"globals": "15.12.0",
"jest": "29.7.0",
"jest-snapshot-serializer-raw": "1.2.0",
"lines-and-columns": "2.0.4",
"npm-run-all": "4.1.5",
"prettier": "3.3.3",
"standard-version": "9.5.0",
"ts-jest": "29.2.5",
"typescript": "5.7.2",
"typescript-eslint": "8.15.0"
},
"peerDependencies": {
"@angular/compiler": "^17.3.9 || ^18.0.0 || ^19.0.0"
},
"engines": {
"node": ">= 16"
},
"files": [
"lib"
],
"type": "module",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"packageManager": "[email protected]"
}