forked from aerogear/aerogear-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.24 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
{
"name": "@aerogear/my-service",
"description": "",
"main": "dist/index.js",
"types": "types/index.d.ts",
"author": "AeroGear <aerogear@googlegroups.com>",
"keywords": [
"aerogear",
"mobile"
],
"license": "Apache-2.0",
"scripts": {
"clean": "del coverage src/**/*.js src/**/*.map test/**/*.js test/**/*.map node_modules",
"build": "tsc",
"watch": "tsc --watch",
"test": "nyc mocha"
},
"publishConfig": {
"access": "public"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"lcov",
"text"
],
"lines": 75,
"functions": 100,
"branches": 80
},
"devDependencies": {
"@types/chai": "4.1.2",
"@types/chai-as-promised": "7.1.0",
"@types/mocha": "^5.0.0",
"@types/node": "^9.4.6",
"@types/proxyquire": "1.3.28",
"@types/sinon": "^4.3.1",
"browserify": "^16.2.0",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"del-cli": "1.1.0",
"mocha": "^5.0.5",
"nyc": "^11.6.0",
"sinon": "^4.5.0",
"source-map-support": "^0.5.4",
"ts-node": "5.0.1",
"typescript": "^2.8.1"
},
"dependencies": {
"@aerogear/core": "0.1.0"
}
}