-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
78 lines (78 loc) · 1.75 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "odata-query-builder",
"version": "0.0.7",
"description": "An eloquently fluent OData query builder.",
"main": "dist/index.js",
"scripts": {
"build": "webpack",
"lint": "tslint --project tslint.json src/**/**.ts",
"test": "jest --watch",
"coverage": "jest --coverage",
"ci": "jest --coverage --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaredmahan/odata-query-builder.git"
},
"keywords": [
"odata",
"odata v4",
"odata client",
"typescript",
"javascript",
"fluent",
"fluent api",
"angular 8",
"angular 7",
"angular 6",
"angular 5",
"angular 2",
"angular 4",
"angular"
],
"author": "Jared Mahan",
"license": "MIT",
"bugs": {
"url": "https://github.com/jaredmahan/odata-query-builder/issues"
},
"homepage": "https://github.com/jaredmahan/odata-query-builder#readme",
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/lodash": "^4.14.149",
"@types/lodash.orderby": "^4.6.6",
"@types/node": "^13.1.6",
"awesome-typescript-loader": "^5.2.0",
"dts-bundle": "^0.7.3",
"dts-bundle-webpack": "^1.0.0",
"jest": "^23.4.2",
"lodash.orderby": "^4.6.0",
"source-map-loader": "^0.2.3",
"ts-jest": "^23.0.1",
"tslint": "^5.11.0",
"typescript": "^3.0.1",
"webpack": "^4.16.4",
"webpack-cli": "^3.1.0"
},
"jest": {
"testURL": "http://localhost/",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"roots": [
"<rootDir>/src/"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testMatch": [
"**/*.spec.+(ts|tsx|js)"
]
}
}