This repository has been archived by the owner on Feb 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.52 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
95
96
{
"name": "@jobcloud/applywith-sdk",
"engines": {
"node": ">=12.0.0"
},
"version": "1.9.0",
"description": "ApplyWith JobCloud SDK",
"files": [
"es",
"umd",
"buttonFrame.js",
"checkSecureMessage.js",
"createSdk.js",
"hosts.js",
"index.js",
"install.js",
"parseApplication.js",
"parseConfig.js",
"popup.js",
"proxyFrame.js",
"types.js",
"files.js"
],
"license": "MIT",
"scripts": {
"build": "node ./tools/build.js",
"prepublish": "node ./tools/build.js",
"release": "node ./tools/release.js",
"start": "webpack-dev-server -d --content-base ./ --inline modules/index.js",
"preexample": "yarn build; cp ./umd/*.js ./example/public/.",
"example": "concurrently --kill-others \"yarn run example:client\" \"yarn run example:server\"",
"example:client": "http-server ./example -p 8082",
"example:server": "node example/server.js",
"lint": "eslint modules && flow modules",
"serve": "http-server ./mocked-jobcloud-oauth -p 8081",
"test": "jest"
},
"jest": {
"testURL": "http://localhost:8080/"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.5.1",
"babel-preset-flow": "^6.23.0",
"body-parser": "^1.20.0",
"chalk": "^1.1.3",
"concurrently": "^4.1.2",
"eslint": "^4.19.1",
"eslint-plugin-prettier": "^2.7.0",
"express": "^4.18.1",
"flow-bin": "^0.47.0",
"gzip-size": "^3.0.0",
"http-server": "^0.10.0",
"in-publish": "^2.0.0",
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
"ngrok": "^2.3.0",
"prettier": "^1.19.1",
"pretty-bytes": "^4.0.2",
"readline-sync": "^1.4.10",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.3"
},
"dependencies": {
"uuid": "^3.3.2"
},
"resolutions": {
"node-forge": "^1.3.0",
"tar": "^4.4.18",
"ansi-regex": "^3.0.1",
"braces": "^2.3.1",
"minimist": "^1.2.6",
"ajv": "^6.12.3",
"async": "^2.6.4",
"glob-parent": "^5.1.2",
"elliptic": "^6.5.4",
"ecstatic": "^4.1.3",
"json-schema": "^0.4.0",
"merge": "^2.1.1",
"y18n": "^4.0.1",
"node-notifier": "^8.0.1",
"serialize-javascript": "^3.1.0",
"qs": "^6.0.4",
"path-parse": "^1.0.7"
},
"repository": {
"type": "git",
"url": "https://github.com/jobcloud/applywith-sdk.git"
}
}