package.json
941 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
{
"name": "digsig-services",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf ./dist",
"pretest": "tsc --noImplicitAny false -p ./spec",
"test": "jasmine .tmp/spec/index.js",
"posttest": "rm -rf .tmp"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@angular/core": "4.1.0",
"@angular/http": "4.1.0",
"@angular/common": "4.1.0",
"@angular/platform-browser": "4.1.0",
"@types/jasmine": "^2.5.43",
"jasmine": "^2.5.3",
"pouchdb": "^6.1.2",
"pouchdb-upsert": "^2.0.2",
"reflect-metadata": "^0.1.9",
"rxjs": "5.1.1",
"sw-toolbox": "3.4.0",
"typescript": "^2.3.2",
"zone.js": "^0.8.4"
},
"peerDependencies": {
"@angular/http": "*",
"rxjs": "*",
"pouchdb": "*",
"pouchdb-upsert": "*"
}
}