forked from DevExpress/DevExtreme.AspNet.Data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.83 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
{
"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": "^2.0.39",
"bluebird": "^3.5.1",
"eclint": "^2.0.1",
"eslint": "^5.3.0",
"jquery": "^3.3.1",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-ie-launcher": "^1.0.0",
"karma-qunit": "^2.0.0",
"qunit": "^2.0.0",
"typescript": "^2.0.10",
"webpack": "^4.0.0",
"webpack-cli": "^3.0.0",
"xhr-mock": "^2.3.1"
},
"scripts": {
"karma": "cd js-test && karma start",
"karma-bundled": "cd js-test && webpack --mode=development --define ASPNET_DATA_SCRIPT='../js/dx.aspnet.data.js' test.js -o test-bundle.js && karma start --bundled",
"karma-bundled-nojquery": "cd js-test && webpack --mode=development --define ASPNET_DATA_SCRIPT='../js-nojquery/index.js' test.js -o test-bundle.js && karma start --bundled",
"karma-bundled-nojquery-cjs": "cd js-test && webpack --mode=development --define ASPNET_DATA_SCRIPT='../js-nojquery/index.js' --define define=false test.js -o test-bundle.js && karma start --bundled",
"dts": "cd js-test && tsc check-ts-compilation.ts && tsc check-ts-compilation.nojquery.ts",
"eslint": "eslint .",
"eclint": "eclint check *.{yml,json} {net,js,js-test}/**/*.{cs,js,ts,html,json,cshtml,tt} !net/**/{bin,obj}/** !net/docfx/build/** !js-test/test-bundle.js !net/Sample/{node_modules,wwwroot/lib}/**"
}
}