-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.46 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
{
"name": "circleci-geckoboard-status",
"version": "1.0.0",
"description": "An app to transform payload data from CircleCi and then push to a geckoboard text widget to display CI job status",
"keywords": [
"circleci",
"geckoboard"
],
"homepage": "https://github.com/feedmypixel/circleci-geckoboard-status",
"repository": {
"type": "git",
"url": "https://github.com/feedmypixel/circleci-geckoboard-status"
},
"engines": {
"node": "8.5.0",
"npm": "5.x"
},
"author": "Ben Chidgey <[email protected]> (http://feedmypixel.com)",
"contributors": [
"Ben Chidgey <[email protected]> (http://feedmypixel.com)"
],
"main": "app/index.js",
"license": "Apache-2.0",
"bugs": "https://github.com/feedmypixel/circleci-geckoboard-status/issues",
"scripts": {
"lint": "eslint ./tests ./app",
"test": "npm run lint && jest",
"start": "node app/index.js",
"sass": "node-sass widget/styles.scss widget/styles.css"
},
"devDependencies": {
"eslint": "^4.13.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.4.2",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^21.2.1",
"nock": "^9.1.4",
"node-sass": "^4.7.2"
},
"dependencies": {
"express": "^4.16.2",
"lodash": "^4.17.4",
"morgan": "^1.9.0",
"request": "^2.83.0",
"request-promise": "^4.2.2"
}
}