-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
88 lines (88 loc) · 2.29 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
{
"name": "zendesk_app_framework_sdk",
"version": "2.0.37",
"main": "build/zaf_sdk.min.js",
"description": "The Zendesk App Framework (ZAF) SDK is a JavaScript library that simplifies cross-frame communication between iframed apps and ZAF.",
"homepage": "http://developer.zendesk.com",
"bugs": "[email protected]",
"author": {
"name": "Zendesk",
"email": "[email protected]",
"url": "http://developer.zendesk.com"
},
"engines": {
"node": ">=12.10.0"
},
"repository": {
"type": "git",
"url": "git://github.com/zendesk/zendesk_app_framework_sdk.git"
},
"licenses": [
{
"type": "Apache-2.0"
}
],
"directories": {
"lib": "./lib"
},
"keywords": [
"zendesk",
"apps",
"framework",
"sdk"
],
"dependencies": {
"native-promise-only": "^0.8.1"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"babel-loader": "^8.2.3",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"karma": "^4.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-webpack": "^5.0.0",
"mocha": "^5.2.0",
"sinon": "^6.3.3",
"sinon-chai": "^3.2.0",
"snyk": "^1.425.4",
"standard": "^12.0.1",
"terser-webpack-plugin": "^5.2.5",
"ts-loader": "^8.3.0",
"typescript": "^4.4.2",
"version-bump-prompt": "^4.2.1",
"webpack": "^5.2.0",
"webpack-cli": "^4.1.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2",
"webpack-visualizer-plugin": "^0.1.11"
},
"scripts": {
"bump": "bump --patch --tag --commit ' '",
"bump:minor": "bump --minor --tag --commit ' '",
"bump:major": "bump --major --tag --commit ' '",
"test": "karma start --single-run",
"server": "webpack serve",
"build:dev": "webpack",
"build": "webpack --env production",
"stats": "node ./stats.js",
"lint": "standard",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"standard": {
"ignore": [
"/build/"
]
},
"snyk": true
}