-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 968 Bytes
/
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": "pailingual-odata-filter",
"version": "1.1.0",
"description": "Plugin for pailingual-odata that implements support arrow function in $filter query option",
"main": "index.js",
"types": "index.d.ts",
"author": {
"name": "Gennady Pundikov"
},
"repository": {
"type": "git",
"url": "https://github.com/genusP/pailingual-odata-filter.git"
},
"license": "MIT",
"dependencies": {
"@types/estree": "0.0.39",
"acorn": "^6.0.5"
},
"peerDependencies": {
"pailingual-odata": "^1.1.0",
"typescript": "^3.1.6"
},
"files": [
"*.js",
"*.ts"
],
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.0",
"@types/node": "^8.0.14",
"@types/webpack": "^4.4.32",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"pailingual-odata": "^1.1.0",
"typescript": "^3.1.6"
},
"scripts": {
"test": "mocha ./tests",
"build": "tsc --build",
"clean": "tsc --clean"
}
}