forked from oktadev/schematics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·35 lines (35 loc) · 969 Bytes
/
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
{
"name": "@oktadev/schematics",
"version": "0.6.1",
"description": "Schematics for Okta Auth",
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "npm run build && jasmine src/**/*_spec.js",
"coverage": "istanbul cover -x 'src/**/*_spec.js' jasmine-node src/**/*_spec.js"
},
"keywords": [
"schematics",
"authentication",
"authorization",
"okta"
],
"author": "OktaDev <devrel@okta.com>",
"license": "Apache-2.0",
"repository": "git@github.com:oktadeveloper/schematics.git",
"schematics": "./src/collection.json",
"dependencies": {
"@angular-devkit/core": "^7.3.8",
"@angular-devkit/schematics": "^7.3.8",
"@schematics/angular": "^7.3.8",
"rxjs": "6.4.0",
"schematics-utilities": "^1.1.2"
},
"devDependencies": {
"@types/jasmine": "^3.3.12",
"@types/node": "^11.13.4",
"istanbul": "^0.4.5",
"jasmine": "^3.4.0",
"jasmine-node": "^2.0.1",
"typescript": "~3.4.3"
}
}