-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 857 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 857 Bytes
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
{
"name": "@webacad/observable-file-reader",
"description": "Read file inputs with rxjs observables",
"version": "0.2.0",
"keywords": [
"rxjs",
"observable",
"filereader",
"file",
"reader"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:Web-ACAD/observable-file-reader.git"
},
"author": {
"name": "David Kudera",
"email": "kudera.d@gmail.com",
"url": "https://www.davidkudera.com"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"peerDependencies": {
"rxjs": "^6.0"
},
"devDependencies": {
"@types/node": "^10.9.1",
"npm-install-peers": "^1.2.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^2.9.0"
},
"scripts": {
"build": "tsc",
"lint": "tslint --project tsconfig.json",
"prepublishOnly": "npm run build",
"install:peers": "npm-install-peers"
}
}