-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
85 lines (85 loc) · 2.25 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
79
80
81
82
83
84
85
{
"name": "breeze-odata4",
"version": "1.0.0",
"description": "Library to allow OData 4 support for breezejs",
"author": "Travis Schettler",
"homepage": "https://github.com/tschettler/breeze-odata4#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tschettler/breeze-odata4.git"
},
"bugs": {
"url": "https://github.com/tschettler/breeze-odata4/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/tschettler"
},
{
"type": "patreon",
"url": "https://www.patreon.com/tschettler"
}
],
"keywords": [
"breeze",
"breezejs",
"breeze-client",
"odata",
"odata4",
"typescript"
],
"main": "dist/breeze-odata4.umd.js",
"module": "dist/breeze-odata4.es5.js",
"typings": "dist/types/index",
"files": [
"/dist",
"/typings"
],
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"build": "tsc --module commonjs --target es5 && rollup -c rollup.config.ts",
"build:prod": "npm run build && npm run typedoc",
"lint": "tslint --project tsconfig.json",
"prebuild": "rimraf dist docs",
"pretest": "clear",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"start": "rollup -c rollup.config.ts -w",
"test": "jest --verbose",
"test:prod": "npm run lint && npm run test -- --coverage --no-cache",
"test:watch": "jest --watch",
"typedoc": "typedoc src"
},
"dependencies": {
"breeze-client": "^1.7.0",
"ts-odatajs": "^4.0.8"
},
"peerDependencies": {
"breeze-client": "^1.7.0",
"ts-odatajs": "^4.0.8"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.15",
"camelcase": "^6.2.0",
"coveralls": "^3.1.1",
"jest": "^27.4.7",
"jest-config": "^27.4.7",
"rimraf": "^3.0.2",
"rollup": "^2.45.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-polyfill-node": "^0.8.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.1.3",
"tslint": "^5.20.1",
"typedoc": "^0.22.11",
"typedoc-plugin-missing-exports": "^0.22.6",
"typescript": "^4.5.5"
}
}