generated from Kentico/repo-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
108 lines (108 loc) · 4.26 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
102
103
104
105
106
107
108
{
"name": "@kontent-ai/smart-link",
"version": "3.3.0",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/kontent-ai/smart-link"
},
"description": "Kontent.ai Smart Link SDK allowing to automatically inject [smart links](https://docs.kontent.ai/tutorials/develop-apps/build-strong-foundation/set-up-editing-from-preview#a-using-smart-links) to Kontent.ai according to manually specified [HTML data attributes](https://www.w3schools.com/tags/att_data-.asp) on your website. It also lets you connect your website with Web Spotlight.",
"main": "./commonjs/index.js",
"types": "./types/index.d.ts",
"module": "./es/index.js",
"jsnext:main": "./es/index.js",
"files": [
"dist",
"commonjs",
"es",
"types"
],
"scripts": {
"build": "npm run build:commonjs && npm run build:umd && npm run build:es",
"build:commonjs": "tsc -m commonjs --outDir commonjs --p tsconfig.json",
"build:commonjs:watch": "npm run build:commonjs -- -w",
"build:es": "tsc -m es2015 --outDir es --p tsconfig.json",
"build:es:watch": "npm run build:es -- -w",
"build:umd": "npm run webpack:dev && npm run webpack:prod",
"build:umd:watch": "concurrently \"npm run webpack:dev:watch\" \"npm run webpack:prod:watch\"",
"bundle-stats": "npm run build:umd && webpack-bundle-analyzer dist/stats.json",
"ci": "npm ci --legacy-peer-deps",
"clean": "rimraf commonjs dist es types",
"dev": "concurrently \"npm run build:commonjs:watch\" \"npm run build:umd:watch\" \"npm run build:es:watch\"",
"i": "npm install --legacy-peer-deps",
"lint": "eslint \"{src,test-browser,.storybook}/**/*.{js,ts,tsx}\"",
"lint:fix": "npm run lint -- --fix",
"prepare": "npm run clean && npm run build",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"test:unit": "karma start karma.conf.js",
"test:unit:ci": "npm run test:unit -- --single-run --browsers ChromeHeadless",
"test:visual": "loki test",
"test:visual:approve": "loki approve",
"test:visual:ci": "concurrently \"npm run storybook -- --ci\" \"npm run test:visual\" --kill-others --success=first",
"test:visual:update": "loki update",
"webpack:dev": "webpack --mode development --config webpack.config.js --progress --color",
"webpack:dev:watch": "npm run webpack:dev -- --watch",
"webpack:prod": "webpack --mode production --config webpack.config.js --progress --color",
"webpack:prod:watch": "npm run webpack:prod -- --watch"
},
"keywords": [
"Kontent Javascript",
"Kontent Preview",
"Kontent SDK",
"Kontent Typescript",
"Kontent",
"Kontent.ai Javascript",
"Kontent.ai Preview",
"Kontent.ai SDK",
"Kontent.ai Typescript",
"Kontent.ai"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kontent-ai/smart-link/issues"
},
"homepage": "https://github.com/kontent-ai/smart-link#readme",
"devDependencies": {
"@babel/core": "7.18.10",
"@storybook/addon-actions": "6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-links": "6.5.10",
"@storybook/addon-queryparams": "6.2.9",
"@storybook/builder-webpack5": "^6.5.10",
"@storybook/html": "^6.5.10",
"@storybook/manager-webpack5": "^6.5.10",
"@storybook/preset-typescript": "3.0.0",
"@types/jasmine": "4.0.3",
"@typescript-eslint/eslint-plugin": "5.33.0",
"@typescript-eslint/parser": "5.33.0",
"babel-loader": "8.2.5",
"concurrently": "7.3.0",
"eslint": "8.21.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-storybook": "^0.6.4",
"fork-ts-checker-webpack-plugin": "7.2.13",
"jasmine-core": "4.3.0",
"karma": "6.4.0",
"karma-chrome-launcher": "3.1.1",
"karma-cli": "2.0.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.0.0",
"karma-typescript": "5.5.3",
"karma-typescript-es6-transform": "5.5.3",
"loki": "0.34.0",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"ts-loader": "9.3.1",
"typescript": "4.7.4",
"webpack": "5.76.0",
"webpack-bundle-analyzer": "4.5.0",
"webpack-cli": "4.10.0",
"webpack-merge": "5.8.0"
},
"dependencies": {
"@kontent-ai/delivery-sdk": "^14.10.0"
}
}