-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.33 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
{
"name": "@activewidgets/odata",
"version": "0.1.0",
"description": "ActiveWidgets OData integration",
"author": "ActiveWidgets SARL",
"license": "MIT",
"main": "./dist/odata.js",
"module": "./dist/esm/odata.js",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "npm run lint && rimraf dist/* && rollup -c",
"lint": "eslint **/*.js -f unix",
"prepack": "npm run build"
},
"dependencies": {
"@activewidgets/options": "^3"
},
"devDependencies": {
"@babel/core": "^7",
"@babel/preset-env": "^7",
"@rollup/plugin-babel": "^5",
"@rollup/plugin-node-resolve": "^13",
"eslint": "^8",
"rimraf": "^3",
"rollup": "^2",
"rollup-plugin-terser": "^7"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"globals": {
"Promise": true
},
"rules": {
"no-prototype-builtins": "off"
},
"env": {
"browser": true
}
},
"eslintIgnore": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/activewidgets/odata.git"
},
"keywords": [
"datagrid",
"odata"
],
"bugs": {
"url": "https://github.com/activewidgets/odata/issues"
},
"homepage": "https://github.com/activewidgets/odata#readme"
}