123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- {
- "name": "angular-estree-parser",
- "version": "2.4.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/ikatyang/angular-estree-parser",
- "homepage": "https://github.com/ikatyang/angular-estree-parser#readme",
- "author": {
- "name": "Ika",
- "email": "ikatyang@gmail.com",
- "url": "https://github.com/ikatyang"
- },
- "license": "MIT",
- "scripts": {
- "prepublish": "yarn run build",
- "lint": "tslint -p ./tsconfig.json",
- "test": "jest",
- "prebuild": "rm -rf ./lib",
- "build": "tsc -p ./tsconfig.build.json",
- "release": "standard-version"
- },
- "dependencies": {
- "lines-and-columns": "^1.1.6",
- "tslib": "^2.0.3"
- },
- "devDependencies": {
- "@angular/compiler": "12.0.2",
- "@babel/code-frame": "7.8.3",
- "@babel/parser": "7.6.4",
- "@babel/types": "7.1.5",
- "@types/babel-types": "7.0.4",
- "@types/babel__code-frame": "7.0.1",
- "@types/jest": "23.3.14",
- "@types/prettier": "1.18.3",
- "jest": "23.6.0",
- "jest-snapshot-serializer-raw": "1.1.0",
- "prettier": "1.18.2",
- "prettier-config-ikatyang": "1.1.1",
- "standard-version": "4.4.0",
- "ts-jest": "23.10.5",
- "tslint": "5.20.1",
- "tslint-config-prettier": "1.18.0",
- "tslint-plugin-prettier": "2.1.0",
- "typescript": "4.1.2"
- },
- "peerDependencies": {
- "@angular/compiler": "^9.1.0 || ^10.0.0 || ^11.0.0 || ^12.0.0"
- },
- "engines": {
- "node": ">= 10.13.0"
- },
- "files": [
- "/lib/**/*"
- ]
- }
|