-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.11 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
{
"name": "bing-image-of-the-day",
"version": "1.0.4",
"description": "Gets the urls from the bing's images of the day",
"main": "dist/index.js",
"scripts": {
"commit": "git-cz",
"check-coverage": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"watch:test": "npm test -- -w",
"test": "mocha src/index.spec.js --compilers js:babel-register",
"linter": "eslint src/**/*.js",
"doc": "npm run jsdoc",
"jsdoc": "jsdoc -c .jsdocrc.json",
"cover": "nyc npm test",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --copy-files --out-dir dist --ignore *.spec.js src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ercpereda/bing-image-of-the-day.git"
},
"keywords": [],
"files": [
"dist",
"doc"
],
"author": "Ernesto R. C. Pereda <ercp42@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ercpereda/bing-image-of-the-day/issues"
},
"homepage": "https://github.com/ercpereda/bing-image-of-the-day#readme",
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run linter"
}
},
"nyc": {
"exclude": [
"**/*.spec.js"
]
},
"devDependencies": {
"babel-cli": "6.14.0",
"babel-eslint": "6.1.2",
"babel-loader": "6.2.5",
"babel-preset-es2015": "6.14.0",
"babel-preset-stage-3": "6.11.0",
"babel-register": "6.14.0",
"chai": "3.5.0",
"codecov": "1.0.1",
"commitizen": "2.8.6",
"cz-conventional-changelog": "1.2.0",
"eslint": "3.3.1",
"eslint-config-defaults": "9.0.0",
"ghooks": "1.3.2",
"jsdoc": "3.4.0",
"jsdoc-babel": "0.2.1",
"json-loader": "0.5.4",
"mocha": "3.0.2",
"npm-run-all": "3.0.0",
"nyc": "8.1.0",
"rimraf": "2.5.4",
"webpack": "1.13.2"
},
"dependencies": {
"babel-plugin-transform-runtime": "6.12.0",
"minimal-request-promise": "1.3.0",
"request": "2.75.0"
}
}