-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
94 lines (94 loc) · 3.11 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@digitalpersona/services",
"globalObject": "dp.services",
"version": "0.2.8",
"repository": {
"type": "git",
"url": "https://github.com/hidglobal/digitalpersona-services"
},
"publishConfig": {
"access": "public"
},
"description": "DigitalPersona Web Access Services",
"author": "HID Global",
"license": "MIT",
"maintainers": [
{
"name": "Andrey Bronnikov",
"email": "Andrey.Bronnikov@hidglobal.com"
}
],
"keywords": [
"DigitalPersona",
"authentication",
"identification",
"jwt",
"policy",
"claims",
"enroll",
"secret",
"ActiveDirectory",
"LDS",
"Altus"
],
"module": "./dist/es5/index.js",
"main": "./dist/es5.bundles/index.umd.js",
"browser": "./dist/es5.bundles/index.umd.js",
"es2015": "./dist/es6/index.js",
"typings": "./dist/typings/index.d.ts",
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && npm run tsc-all && npm run rollup && npm run api && npm run api-doc",
"tsc": "tsc",
"tsc-es5": "tsc --p ./build/tsconfig/tsconfig.es5.json",
"tsc-es6": "tsc --p ./build/tsconfig/tsconfig.es6.json",
"tsc-all": "npm run tsc && npm run tsc-es5 && npm run tsc-es6",
"rollup-es5": "rollup -c -c rollup.config.js --environment target:es5",
"rollup-es5-min": "rollup -c -c rollup.config.js --environment target:es5,minify",
"rollup-es6": "rollup -c -c rollup.config.js --environment target:es6",
"rollup-es6-min": "rollup -c -c rollup.config.js --environment target:es6,minify",
"rollup": "npm run rollup-es5 && npm run rollup-es5-min && npm run rollup-es6 && npm run rollup-es6-min",
"test": "karma start",
"test-once": "karma start --single-run",
"test-private": "set UUT=private&& karma start",
"test-common": "set UUT=common&& karma start",
"test-auth": "set UUT=auth&& karma start",
"test-policy": "set UUT=policy&& karma start",
"test-secrets": "set UUT=secrets&& karma start",
"test-claims": "set UUT=claims&& karma start",
"test-admin": "set UUT=admin&& karma start",
"test-enroll": "set UUT=enroll&& karma start",
"docs": "typedoc --options ./build/typedoc.config.js ./src",
"local-npm": "start verdaccio",
"api": "npx api-extractor run --local --verbose",
"api-doc": "npx api-documenter markdown -i ./dist/api -o ./dist/api/docs",
"api-all": "tsc && npm run api && npm run api-doc",
"prepublishOnly": "npm run build && npm run test-once"
},
"dependencies": {
"@digitalpersona/core": "^0.2",
"tslib": "^1.9.3"
},
"peerDependencies": {},
"devDependencies": {
"@types/jasmine": "^3.3",
"@types/node": "^12.0",
"fetch-mock": "^7.3",
"jasmine": "^3.4",
"jasmine-core": "^3.3",
"karma": "^4.0",
"karma-chrome-launcher": "^2.2",
"karma-ie-launcher": "^1.0",
"karma-jasmine": "^2.0",
"karma-typescript": "^4.0",
"mkdirp": "^0.5",
"rimraf": "^2.6",
"rollup": "^1.6",
"rollup-plugin-node-resolve": "^4.0",
"rollup-plugin-terser": "^4.0",
"rollup-plugin-typescript2": "^0.21",
"terser": "^3.17",
"tslint": "^5.14",
"typescript": "^3.5"
}
}