-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.07 KB
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
{
"name": "microedge-rxstate",
"version": "3.0.0",
"description": "Simple state management for TypeScript apps that use Reactive Extensions",
"repository": {
"type": "git",
"url": "git+https://github.com/blackbaud/microedge-rxstate.git"
},
"keywords": [
"rx",
"rxstate",
"microedge",
"blackbaud"
],
"author": "Brandon Stirnaman <brandon.stirnaman@blackbaud.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/blackbaud/microedge-rxstate/issues"
},
"homepage": "https://github.com/blackbaud/microedge-rxstate#readme",
"scripts": {
"build": "npm run clean && cp -r ./src ./dist && ./node_modules/.bin/ngc",
"clean": "rimraf -- dist *.js *.d.ts *.ngsummary.json *.metadata.json",
"prepublish": "npm run release",
"release": "npm run build"
},
"devDependencies": {
"@angular/compiler": "7.2.6",
"@angular/compiler-cli": "7.2.6",
"@angular/core": "7.2.6",
"rimraf": "2.6.1",
"rxjs": "6.3.3",
"typescript": "3.2.4",
"zone.js": "0.8.29"
},
"peerDependencies": {
"rxjs": "^6.3.3"
}
}