-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 2.19 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
{
"name": "ngx-odata-v4",
"version": "1.1.1",
"scripts": {
"start": "tsc -p playground && tsc -p src && concurrently \"tsc -p playground -w\" \"tsc -p src -w\" \"lite-server --config sync-bs-config.json\" ",
"start:example": "tsc -p ./example/angular && concurrently \"tsc -p ./example/angular -w\" \"lite-server --config sync-bs-config-example.json\" ",
"yarn": "yarn",
"build": "yarn run rimraf dist && yarn run rimraf doc && yarn run build-lib && yarn run build-doc",
"build-lib": "yarn run ng-packagr -p ng-package.json",
"build-doc": "typedoc --module system --out ./docs ./src/objects",
"npm-publish": "yarn run build-lib && cd dist && npm publish",
"github:release": "yarn run bestzip build.zip ./dist/* && node publish_release_github.js"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/skynet2/ngx-odata"
},
"bugs": {
"url": "https://github.com/skynet2/ngx-odata/issues"
},
"homepage": "https://github.com/skynet2/ngx-odata",
"contributors": [
{
"name": "Stas Dmytryshyn",
"url": "https://github.com/skynet2"
}
],
"keywords": [
"odata",
"odata v4",
"odata client",
"typescript",
"javascript",
"fluent",
"fluent api",
"angular 5",
"angular 2",
"angular 4",
"angular"
],
"dependencies": {
"ts-date": "^2.1.6"
},
"peerDependencies": {
"ts-date": "> 2.0.0"
},
"devDependencies": {
"@angular/common": "^5.2.1",
"@angular/core": "^5.2.1",
"@angular/compiler": "^5.2.1",
"@angular/compiler-cli": "^5.2.1",
"@angular/platform-browser": "^5.2.1",
"@angular/platform-browser-dynamic": "^5.2.1",
"systemjs": "~0.20.19",
"core-js": "^2.5.3",
"rxjs": "^5.5.6",
"zone.js": "^0.8.20",
"@types/node": "7.0.5",
"typescript": "^2.6.2",
"concurrently": "^3.5.1",
"lite-server": "^2.3.0",
"element-closest": "^2.0.2",
"rimraf": "^2.6.2",
"rollup": "^0.55.0",
"rollup-plugin-copy": "^0.2.3",
"ng-packagr": "^1.6.0",
"postcss-discard-comments": "^2.0.4",
"typedoc": "^0.9.0",
"tslib": "^1.9.0",
"ngx-odata-v4": "*",
"bestzip": "^1.1.4",
"publish-release": "^1.4.0"
}
}