-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.25 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.25 KB
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
{
"name": "angular-aot-fixer",
"version": "0.8.0",
"description": "Utility to assist in fixing AOT compatibility issues in an Angular codebase.",
"keywords": [
"angular",
"aot"
],
"homepage": "https://github.com/gregjacobs/angular-aot-fixer",
"repository": {
"type": "git",
"url": "https://github.com/gregjacobs/angular-aot-fixer"
},
"bugs": {
"url": "https://github.com/gregjacobs/angular-aot-fixer/issues"
},
"author": "Gregory Jacobs <greg@greg-jacobs.com>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "dist/cli.js",
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"cli": "npm run build && node dist/cli.js",
"test": "mocha --require ts-node/register --timeout 30000 --watch-extensions ts \"./**/*.spec.ts\"",
"prepublishOnly": "npm test && npm run build"
},
"dependencies": {
"argparse": "^1.0.10",
"graphlib": "^2.1.5",
"htmlparser2": "^3.9.2",
"lodash": "^4.17.10",
"trace-error": "^0.0.7",
"ts-simple-ast": "^12.6.2",
"typescript": "^2.9.2"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/graphlib": "^2.1.4",
"@types/lodash": "^4.14.112",
"@types/mocha": "^5.2.4",
"@types/node": "^10.5.2",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"ts-node": "^7.0.0"
}
}