-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
70 lines (70 loc) · 1.85 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
{
"name": "@progress/kendo-intl",
"description": "A package exporting functions for date and number parsing and formatting",
"author": "Telerik",
"license": "Apache-2.0",
"version": "0.0.0-semantically-released",
"main": "dist/npm/main.js",
"module": "dist/es/main.js",
"jsnext:main": "dist/es/main.js",
"es2015": "dist/es2015/main.js",
"typings": "dist/npm/main.d.ts",
"scripts": {
"build-package": "gulp build-rollup-package build-cdn",
"test": "vitest --run ./test/",
"test:watch": "vitest ./test/",
"locale-tests": "vitest --run ./locale-tests/",
"locale-tests:watch": "vitest ./locale-tests/",
"lint": "eslint -- ./src ./test ./locale-tests/*.js",
"prepare": "husky"
},
"keywords": [
"Kendo",
"Internationalization"
],
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@progress/kendo-package-tasks": "4.0.40",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"cldr-core": "^41.0.0",
"cldr-data": "^36.0.1",
"cldr-dates-full": "^41.0.0",
"cldr-localenames-full": "^41.0.0",
"cldr-misc-full": "^41.0.0",
"cldr-numbers-full": "^41.0.0",
"cldr-units-full": "^41.0.0",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^28.10.0",
"gulp": "^4.0.0",
"husky": "^9.1.7",
"semantic-release": "^24.2.1",
"vitest": "^2.1.8"
},
"repository": {
"type": "git",
"url": "https://github.com/telerik/kendo-intl.git"
},
"release": {
"branches": [
{
"name": "master",
"channel": "latest"
},
{
"name": "develop",
"prerelease": true,
"channel": "dev"
}
]
},
"publishConfig": {
"provenance": true
},
"files": [
"dist",
"build-locales.js"
]
}