forked from zendesk/zendesk_app_framework_sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.08 KB
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
{
"name": "zendesk_app_framework_sdk",
"version": "2.0.33",
"main": "lib/zendesk-app-framework-sdk.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": "support@zendesk.com",
"author": {
"name": "Zendesk",
"email": "support@zendesk.com",
"url": "http://developer.zendesk.com"
},
"engines": {
"node": ">=12.10.0",
"npm": ">=5.6.0",
"yarn": "Yarn is disabled for this project, use npm instead"
},
"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": "^6.26.3",
"babel-loader": "^7.1.5",
"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": "^3.0.5",
"mocha": "^5.2.0",
"sinon": "^6.3.3",
"sinon-chai": "^3.2.0",
"standard": "^12.0.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"version-bump-prompt": "^4.2.1",
"webpack-dev-server": "^3.1.14",
"webpack-visualizer-plugin": "^0.1.11",
"snyk": "^1.425.4",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-merge": "^4.2.2"
},
"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-dev-server",
"build:dev": "webpack",
"build": "webpack --env.production -p",
"stats": "node ./stats.js",
"lint": "standard",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"snyk": true
}