-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.75 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.75 KB
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
{
"name": "@devexpress/dx-grid-core",
"version": "1.7.2",
"description": "Core library for the DevExtreme Reactive Grid component",
"author": {
"name": "Developer Express Inc.",
"url": "https://www.devexpress.com/"
},
"bugs": {
"url": "https://github.com/DevExpress/devextreme-reactive/issues"
},
"homepage": "https://devexpress.github.io/devextreme-reactive/",
"repository": {
"type": "git",
"url": "git+https://github.com/DevExpress/devextreme-reactive.git"
},
"keywords": [
"data",
"grid",
"table"
],
"license": "SEE LICENSE IN README.md",
"publishConfig": {
"access": "public"
},
"main": "dist/dx-grid-core.umd.js",
"module": "dist/dx-grid-core.es.js",
"globalName": "DevExpress.DXGridCore",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "rollup -c rollup.config.js",
"build:watch": "rollup -c rollup.config.js -w",
"lint": "eslint \"src/**\"",
"lint:fix": "yarn run lint -- --fix"
},
"devDependencies": {
"@devexpress/dx-core": "1.7.2",
"babel-core": "^6.26.3",
"babel-jest": "^23.4.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"core-js": "^2.5.7",
"eslint": "^5.4.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.22.0",
"jest": "^23.5.0",
"rollup": "0.50.0",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-license": "^0.6.0"
},
"peerDependencies": {
"@devexpress/dx-core": "1.7.2"
}
}