-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
74 lines (74 loc) · 2.27 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
{
"name": "breeze-client",
"version": "2.1.6",
"private": true,
"description": "Breeze data management for JavaScript clients",
"repository": "https://github.com/Breeze/breeze-client.git",
"devDependencies": {
"@angular/common": "~9.1.0",
"@angular/compiler": "~9.1.0",
"@angular/compiler-cli": "~9.1.0",
"@angular/core": "~9.1.0",
"@types/node": "^12.12.26",
"canonical-path": "^1.0.0",
"downlevel-dts": "^0.11.0",
"fs-extra": "^9.0.1",
"ng-packagr": "^9.1.5",
"rimraf": "^3.0.2",
"rxjs": "^6.6.6",
"tslib": "^1",
"tslint": "^6.1.3",
"typedoc": "^0.18.0",
"typescript": "~3.8"
},
"scripts": {
"build": "npm run clean && npm run packagr && rimraf dist/spec && npm run downlevel-dts && npm pack ./dist && npm run install-to-spec",
"clean": "rimraf temp && rimraf src/*.js* && rimraf src/*.d.ts && rimraf ./*.d.ts && rimraf dist && rimraf node_modules/breeze-client.js",
"install-to-spec": "cd spec && npm install ../breeze-client-2.1.6.tgz",
"publish": "node tools/unprivate.js && npm publish --tag latest ./dist && npm dist-tag add [email protected] cjs",
"tsc": "tsc",
"watch-tsc": "tsc -w",
"downlevel-dts": "downlevel-dts ./dist ./dist",
"remove-dup-name": "node tools/remove-dup-name.js",
"typedoc": "typedoc --out ./temp/docs/ --exclude xx --excludePrivate --excludeNotExported --tsConfig ./tsconfig.typedoc.json --mode file --readme ./readme.doc.md ./src/breeze.ts && node tools/copyIfDifferent.js temp/docs docs ",
"packagr": "ng-packagr -p ng-package.json",
"copy-to-breezejs": "node tools/copy-to-breezejs.js"
},
"author": {
"name": "IdeaBlade",
"email": "[email protected]",
"url": "https://www.ideablade.com/"
},
"contributors": [
"Jay Traband",
"Steve Schmitt",
"Marcel Good",
"Ward Bell"
],
"keywords": [
"breeze",
"breezejs",
"spa",
"data binding",
"change tracking",
"query",
"linq",
"cache",
"graph",
"graphql",
"angular",
"angularjs",
"react",
"vue",
"aurelia",
"relational",
"orm",
"entity",
"model"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Breeze/breeze-client/issues"
},
"homepage": "https://github.com/Breeze/breeze-client#readme"
}