-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.73 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
{
"name": "kentico-cloud-delivery-node-sdk",
"version": "1.2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Enngage/KenticoCloudDeliveryNodeSDK.git"
},
"author": "richard sustek",
"description": "Official Kentico Cloud Delivery SDK for node",
"keywords": [
"Kentico",
"Kentico API",
"Kentico SDK",
"Kentico Cloud",
"Kentico Cloud SDK",
"Kentico Cloud Node",
"Kentico Cloud Node.js",
"Kentico Cloud Delivery",
"Kentico Cloud Delivery SDK",
"Kentico Delivery",
"Kentico Delivery SDK"
],
"license": "MIT",
"engines": {
"node": ">= 8"
},
"scripts": {
"test": "gulp build && node test/nodejs/app && node test/official/node-js/index && node test/test-completed",
"build": "gulp build",
"prepublishOnly": "npm run build && npm run test && node test/test-completed",
"new-patch": "npm version patch && npm run update-sdk-info",
"new-minor": "npm version minor && npm run update-sdk-info",
"new-major": "npm version major && npm run update-sdk-info",
"update-sdk-info": "node ./misc/update-sdk-info.js"
},
"private": false,
"dependencies": {
"kentico-cloud-delivery-typescript-sdk": "2.6.1",
"rxjs": "5.5.7"
},
"devDependencies": {
"@types/node": "9.4.7",
"gulp": "3.9.1",
"gulp-clean": "0.4.0",
"gulp-typescript": "4.0.1",
"merge2": "1.2.1",
"ts-node": "5.0.1",
"tslint": "5.9.1",
"typescript": "2.7.2"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bugs": {
"url": "https://github.com/Enngage/KenticoCloudDeliveryNodeSDK/issues"
},
"homepage": "https://github.com/Enngage/KenticoCloudDeliveryNodeSDK#readme",
"directories": {
"lib": "lib",
"test": "test"
}
}