-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.1 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
90
91
{
"name": "@getstalkr/github-commits-feed",
"version": "1.0.0",
"description": "@getstalkr micro service which feeds our clients with GitHub push events.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/getstalkr/github-commits-feed"
},
"author": "Stalkr Foundation <@getstalkr>",
"keywords": [
"apex",
"infrastructure",
"devops",
"monitoring",
"stalkr-plugin"
],
"engines": {
"node": "8.0.0"
},
"files": [
"dist/"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "npm run code:run",
"code:run": "node ./dist/",
"code:build": "node tasks/bundle",
"code:watch": "node tasks/bundle --watch",
"code:test:spec": "mocha",
"code:test:spec:coverage": "nyc mocha",
"code:test:lint": "tslint {src,test}/**/*.ts --format stylish",
"docs:code": "typedoc --out dist/docs",
"docs:TOC": "markdown-toc README.md -i",
"docs:TOC:watch": "onchange 'README.md' -- npm run docs:TOC",
"all:watch": "run-p code:watch docs:TOC:watch",
"clean": "rimraf lib"
},
"dependencies": {
"@types/micro": "^7.3.0",
"axios": "^0.16.1",
"micro": "^7.3.3",
"pusher": "^1.5.1",
"source-map-support": "^0.4.9"
},
"devDependencies": {
"@types/chai": "^3.0.0",
"@types/mocha": "^2.0.0",
"@types/node": "^7.0.18",
"awesome-typescript-loader": "^3.1.3",
"chai": "^3.0.0",
"chalk": "^1.1.3",
"coveralls": "^2.0.0",
"markdown-toc": "^1.1.0",
"mocha": "^3.4.1",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.2",
"nyc": "^10.3.2",
"onchange": "^3.2.1",
"ora": "^1.2.0",
"ts-node": "^3.0.4",
"tslint": "^5.2.0",
"typedoc": "^0.7.0",
"typescript": "^2.3.2",
"webpack": "^2.5.1",
"yargs": "^8.0.1"
},
"nyc": {
"include": [
"src/*.ts"
],
"exclude": [
"dist"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"lcov",
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true,
"all": true
}
}