forked from kontent-ai/management-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.87 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
97
98
99
100
101
{
"name": "@kentico/kontent-management",
"version": "2.0.1",
"repository": {
"type": "git",
"url": "https://github.com/Kentico/kontent-management-sdk-js"
},
"private": false,
"author": "richard sustek",
"license": "MIT",
"description": "Official Kentico kontent Content management API SDK",
"keywords": [
"Kentico",
"Kontent",
"Kontent SDK",
"Kontent API",
"Kentico kontent",
"Kentico kontent Javascript",
"Kentico kontent API",
"Kentico API",
"Kentico Javascript",
"Kentico SDK",
"Kentico Management",
"Kentico kontent Content Management",
"Kentico Kontent API"
],
"engines": {
"node": ">= 8"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm5/index.js",
"es2015": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
"standard-version": {
"scripts": {
"postchangelog": "npm run set-sdk-version"
}
},
"scripts": {
"prerelease": "standard-version --prerelease",
"release": "standard-version",
"release:patch": "standard-version --release-as patch",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"ts-lint:fix": "npm run ts-lint:check -- --fix",
"ts-lint:check": "tslint --project ./tsconfig.json",
"test:browser": "karma start karma.conf.js",
"test:gh-actions": "karma start karma-gh-actions.conf.js",
"test:node": "npm run build:commonjs && npx mocha -- \"test/node/**/*.js\" --timeout 15000",
"test:all": "npm run test:node && npm run test:gh-actions",
"new-patch": "npm version patch && npm run set-sdk-version && npm run check-version ",
"new-minor": "npm version minor && npm run set-sdk-version && npm run check-version ",
"new-major": "npm version major && npm run set-sdk-version && npm run check-version ",
"prepublishOnly": "npm run ts-lint:check && npm run check-version && npm run build:all && npm run test:all",
"set-sdk-version": "npx ts-node ./misc/set-sdk-version.ts",
"check-version": "npx ts-node ./misc/verify-sdk-version.ts",
"webpack:dev": "webpack -- --mode development --config webpack.config.js --progress",
"webpack:prod": "webpack -- --mode production --config webpack.config.js --progress",
"publish:beta": "npm publish --tag=next",
"build:umd": "npm run webpack:dev && npm run webpack:prod",
"build:es6": "tsc -m es6 --outDir dist/es6 --p tsconfig.prod.json",
"build:es2020": "tsc -m es2020 --outDir dist/es2020 --p tsconfig.prod.json",
"build:esnext": "tsc -m esnext --outDir dist/esnext --p tsconfig.prod.json",
"build:commonjs": "tsc -m commonjs --outDir dist/cjs --p tsconfig.prod.json",
"build:all": "npm run build:umd && npm run build:es6 && npm run build:es2020 && npm run build:esnext && npm run build:commonjs",
"bundle-stats:min": "npm run build:umd && webpack-bundle-analyzer dist/bundles/stats.min.json",
"bundle-stats": "npm run build:umd && webpack-bundle-analyzer dist/bundles/stats.json"
},
"dependencies": {
"@kentico/kontent-core": "9.4.0",
"mime": "3.0.0"
},
"peerDependencies": {},
"devDependencies": {
"@types/jasmine": "3.10.3",
"@types/mime": "2.0.3",
"@types/node": "16.11.10",
"core-js": "3.19.1",
"jasmine-core": "3.10.1",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.3.9",
"karma-chrome-launcher": "3.1.0",
"karma-cli": "2.0.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "4.0.1",
"karma-jasmine-html-reporter": "1.7.0",
"karma-sourcemap-loader": "0.3.8",
"karma-typescript": "5.5.2",
"karma-typescript-es6-transform": "5.5.2",
"lcov-parse": "1.0.0",
"mocha": "9.1.3",
"standard-version": "9.3.2",
"ts-loader": "9.2.6",
"ts-node": "10.4.0",
"tslint": "6.1.3",
"typescript": "4.4.4",
"webpack": "5.64.2",
"webpack-bundle-analyzer": "4.5.0",
"webpack-cli": "4.9.1"
}
}