-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
executable file
·89 lines (89 loc) · 3 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
86
87
88
89
{
"name": "@angular-extensions/model",
"version": "12.0.0",
"description": "Angular Model - Simple state management with minimalistic API, one way data flow, multiple model support and immutable data exposed as RxJS Observable.",
"main": "lib/model/model.ts",
"scripts": {
"clean": "rm -rf dist coverage .nyc_output .ng_pkg_build && rm -f dist.tgz",
"lint": "tslint {lib,schematics}/**/*.ts -e **/files/**",
"test": "npm run lint && npm run format:test && nyc mocha {lib,schematics}/**/*.test.ts --require ts-node/register --require source-map-support/register",
"build": "npm run clean && npm run lib:build && npm run schm:build",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"release": "npm run test && standard-version && git push --follow-tags origin master && npm run build && npm publish ./dist --access public",
"format:write": "prettier **/*.{ts,json,md} --write",
"format:test": "prettier **/*.{ts,json,md} --list-different",
"lib:build": "ng-packagr -p package.json",
"lib:test": "mocha lib/model/model.test.ts --require ts-node/register",
"lib:watch": "npm run lib:test -- --watch-extensions ts --watch",
"schm:build": "tsc -p tsconfig.schematics.json && cpx schematics/**/{collection.json,schema.json,files/**} dist/schematics",
"schm:test": "mocha schematics/**/*.test.ts --require ts-node/register --timeout 10000",
"schm:watch": "npm run schm:test -- --watch-extensions ts --watch"
},
"nyc": {
"extension": [
".ts"
],
"reporter": [
"json",
"html",
"text-summary"
]
},
"ngPackage": {
"lib": {
"entryFile": "lib/model/model.ts"
}
},
"schematics": "./schematics/collection.json",
"peerDependencies": {
"@angular/core": "^12.0.0",
"@angular/cli": "^12.0.0",
"rxjs": "^6.6.0",
"typescript": "~4.3.0"
},
"devDependencies": {
"@angular-devkit/core": "^12.0.0",
"@angular-devkit/schematics": "^12.0.0",
"@angular/compiler": "^12.0.0",
"@angular/compiler-cli": "^12.0.0",
"@angular/core": "^12.0.0",
"@schematics/angular": "^12.0.0",
"@types/mocha": "^9.0.0",
"@types/node": "^12.0.0",
"@types/sinon": "^10.0.2",
"cpx": "^1.5.0",
"mocha": "^8.4.0",
"ng-packagr": "^11.0.0",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"rxjs": "~6.6.0",
"sinon": "^9.0.3",
"source-map-support": "^0.5.20",
"standard-version": "^9.3.1",
"ts-node": "^8.10.0",
"tslint": "^6.0.0",
"typescript": "~4.3.0",
"zone.js": "~0.10.2"
},
"keywords": [
"angular",
"model",
"state management",
"rxjs",
"observable",
"immutable",
"typescript",
"schematics",
"angular cli"
],
"author": "Tomas Trajan <@tomastrajan>",
"license": "MIT",
"homepage": "https://github.com/angular-extensions/model#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/angular-extensions/model.git"
},
"bugs": {
"url": "https://github.com/angular-extensions/model/issues"
}
}