forked from Breeze/breeze-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.84 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
{
"name": "breeze-client",
"version": "2.0.7",
"private": true,
"description": "Breeze data management for JavaScript clients",
"repository": "https://github.com/Breeze/breeze-client.git",
"dependencies": {},
"devDependencies": {
"@angular/common": "^8.2.10",
"@angular/compiler": "^8.2.10",
"@angular/compiler-cli": "^8.2.10",
"@angular/core": "^8.2.10",
"@types/jest": "^25.1.1",
"@types/node": "^12.12.26",
"canonical-path": "^1.0.0",
"fs-extra": "^8.0.1",
"ng-packagr": "^5.7.1",
"rimraf": "^2.7.1",
"rxjs": "^6.5.3",
"tslint": "^5.17.0",
"typedoc": "^0.16.9",
"typescript": "^3.5.3"
},
"scripts": {
"build": "npm run clean && npm run packagr && 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.0.7.tgz",
"publish": "npm publish --tag latest ./dist",
"tsc": "tsc",
"watch-tsc": "tsc -w",
"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 package.json",
"copy-to-breezejs": "node tools/copy-to-breezejs.js"
},
"ngPackage": {
"lib": {
"entryFile": "public_api.ts"
}
},
"author": {
"name": "IdeaBlade",
"email": "[email protected]",
"url": "https://www.ideablade.com/"
},
"contributors": [
"Jay Traband",
"Steve Schmitt",
"Marcel Good",
"Ward Bell"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Breeze/breeze-client/issues"
},
"homepage": "https://github.com/Breeze/breeze-client#readme"
}