-
Notifications
You must be signed in to change notification settings - Fork 128
/
package.json
42 lines (42 loc) · 1.28 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
{
"name": "devextreme-aspnet-data",
"title": "DevExtreme.AspNet.Data",
"version": "99.0.0",
"description": "%meta_description%",
"homepage": "%meta_project_url%",
"license": "MIT",
"author": {
"name": "%meta_company%"
},
"repository": {
"type": "git",
"url": "https://github.com/DevExpress/DevExtreme.AspNet.Data.git"
},
"main": "js/dx.aspnet.data.js",
"types": "js/dx.aspnet.data.d.ts",
"peerDependencies": {
"devextreme": ">=18.1.0"
},
"devDependencies": {
"@types/jquery": "3.5.14",
"eslint": "5.16.0",
"jquery": "3.6.2",
"karma": "6.4.1",
"karma-chrome-launcher": "2.2.0",
"karma-coverage": "2.2.0",
"karma-qunit": "2.1.0",
"qunit": "2.19.3",
"typescript": "4.9.4",
"webpack": "5.76.0",
"webpack-cli": "4.10.0",
"xhr-mock": "2.5.1"
},
"scripts": {
"karma": "cd js-test && karma start",
"karma-bundled": "cd js-test && webpack && karma start --bundled",
"karma-bundled-nojquery": "cd js-test && webpack --env NOJQUERY=true && karma start --bundled",
"karma-bundled-nojquery-cjs": "cd js-test && webpack --env NOJQUERY=true --env CJS=true && karma start --bundled",
"dts": "cd js-test && tsc check-ts-compilation.ts && tsc check-ts-compilation.nojquery.ts",
"eslint": "eslint ."
}
}