-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "ivycc",
"version": "0.5.0",
"description": "A library to detect packages which are not compatible with angular ivy",
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "npm run build && jasmine src/**/*_spec.js",
"prepublish": "npm run build"
},
"keywords": [
"Angular Schematics",
"Angular Ivy",
"Ivy"
],
"bin": {
"ivycc": "./check_bin.js"
},
"author": {
"name": "Krishna Sahu",
"url": "https://krishnasahu.com"
},
"repository": {
"type": "git",
"url": "https://github.com/iKrishnaSahu/ivycc.git"
},
"license": "MIT",
"schematics": "./src/collection.json",
"dependencies": {
"@angular-devkit/core": "^17.2.0",
"@angular-devkit/schematics": "^17.2.0",
"@nx/devkit": "^18.0.6",
"@nx/workspace": "^18.0.6",
"cli-table3": "^0.6.3",
"nx": "^18.0.6",
"semver": "^7.6.0",
"typescript": "~5.3.2"
},
"devDependencies": {
"@types/jasmine": "~5.1.0",
"@types/node": "^18.18.0",
"@types/semver": "^7.5.7",
"jasmine": "^5.0.0"
}
}