-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
54 lines (54 loc) · 1.34 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
{
"name": "@oktadev/schematics",
"version": "7.0.0",
"description": "Schematics for Okta Auth",
"keywords": [
"schematics",
"authentication",
"authorization",
"oidc",
"oauth",
"okta",
"auth0",
"angular",
"react",
"vue",
"ionic",
"react-native",
"express",
"typescript"
],
"repository": "[email protected]:oktadev/schematics.git",
"license": "Apache-2.0",
"author": "OktaDev <[email protected]>",
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "npm run build && jasmine src/**/*_spec.js",
"coverage": "istanbul cover -x 'src/**/*_spec.js' jasmine src/**/*_spec.js",
"prepublishOnly": "npm run build",
"check-deps": "ncu --packageFile src/package.json",
"update-deps": "ncu -u --packageFile src/package.json"
},
"dependencies": {
"@angular-devkit/core": "17.2.0",
"@angular-devkit/schematics": "17.2.0",
"@angular/cdk": "17.2.0",
"@schematics/angular": "17.2.0",
"npm-check-updates": "16.14.4",
"rxjs": "7.8.1",
"semver": "7.5.4",
"typescript": "5.3.2"
},
"devDependencies": {
"@types/jasmine": "5.1.0",
"@types/node": "20.11.3",
"@types/semver": "7.5.1",
"chalk": "5.3.0",
"istanbul": "0.4.5",
"jasmine": "5.1.0"
},
"ng-add": {
"save": "devDependencies"
},
"schematics": "./src/collection.json"
}