-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
72 lines (72 loc) · 2.46 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
{
"name": "@fusionauth/typescript-client",
"version": "1.56.0",
"description": "A typescript implementation of the FusionAuth client.",
"main": "build/index.js",
"types": "build/index.d.ts",
"directories": {
"lib": "build",
"test": "test"
},
"files": [
"build/src/*.js",
"build/src/*.js.map",
"build/src/*.d.ts",
"build/*.js",
"build/*.js.map",
"build/*.d.ts",
"dist/fusionauth-typescript-client.*"
],
"scripts": {
"test": "npx mocha build/test/*.js && npx karma start",
"build-browser": "mkdir -p dist && npx browserify index.ts --standalone FusionAuth --debug -p [ tsify --target=es5 ] -t browserify-shim -o dist/fusionauth-typescript-client.js",
"build-browser-min": "mkdir -p dist && npx browserify index.ts --standalone FusionAuth --debug -p [ tsify --target=es5 ] -t browserify-shim -t uglifyify | npx uglifyjs --source-map base -o dist/fusionauth-typescript-client.min.js",
"pretest": "npx tsc && npx tsc -p test && mkdir -p dist && npx browserify test/*.ts --debug -t envify -p [ tsify --target=es5 -p test ] -t browserify-shim -t uglifyify | npx uglifyjs --source-map base -o dist/fusionauth-typescript-client-test.min.js",
"prepare": "npx tsc && npm run build-browser && npm run build-browser-min"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FusionAuth/fusionauth-typescript-client.git"
},
"keywords": [
"FusionAuth",
"client",
"typescript"
],
"author": "Tyler Scott",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/FusionAuth/fusionauth-typescript-client/issues"
},
"homepage": "https://github.com/FusionAuth/fusionauth-typescript-client#readme",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.4",
"@types/node-fetch": "^2.5.7",
"browserify": "^16.5.1",
"browserify-shim": "^3.8.14",
"chai": "^4.2.0",
"cross-fetch": "^3.0.6",
"envify": "^4.1.0",
"karma": "^6.3.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.0",
"karma-mocha-reporter": "^2.2.3",
"mocha": "^9.2.1",
"ts-node": "^8.10.1",
"tsify": "^4.0.1",
"typescript": "^3.8.3",
"uglify-js": "^3.9.1",
"uglifyify": "^5.0.0"
},
"browserify-shim": {
"node-fetch": "cross-fetch",
"url": "global:window"
},
"dependencies": {
"node-fetch": "^2.6.1"
},
"browser": "dist/fusionauth-typescript-client.min.js"
}