-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.21 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
{
"name": "query-builder-odata",
"version": "1.5.0",
"keywords": [
"odata",
"odata v4",
"odata client",
"query builder",
"querybuilder"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/xiadevisser/query-builder-odata.git"
},
"homepage": "https://github.com/xiadevisser/query-builder-odata#readme",
"files": [
"dist"
],
"scripts": {
"start": "webpack --mode development -w",
"build": "rimraf dist && webpack --mode production",
"test": "jest",
"test:cov": "jest --collect-coverage",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"pack": "npm run build && npm pack"
},
"devDependencies": {
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"coveralls": "^3.1.1",
"dts-bundle": "^0.7.3",
"dts-bundle-webpack": "^1.0.2",
"eslint": "^8.3.0",
"jest": "^27.3.1",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.6",
"typescript": "^4.5.2",
"webpack": "^5.64.3",
"webpack-cli": "^4.9.1"
}
}