-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.71 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
{
"name": "api-consumer",
"version": "0.1.2",
"description": "A tiny REST API consumer",
"main": "lib",
"scripts": {
"lint": "eslint lib test",
"test": "cross-env NODE_ENV=test nyc ava",
"dev": "onchange '{lib,test}/**/*.js' -- npm test",
"coverage": "nyc report --reporter=lcov && codeclimate-test-reporter < coverage/lcov.info"
},
"author": {
"name": "James Dinsdale",
"email": "[email protected]",
"url": "https://molovo.co"
},
"license": "MIT",
"devDependencies": {
"ava": "0.22.x",
"babel-core": "6.26.x",
"babel-eslint": "^7.2.3",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "6.24.x",
"babel-preset-stage-2": "6.24.x",
"clone": "^2.1.1",
"codeclimate-test-reporter": "^0.5.0",
"cross-env": "^5.0.5",
"eslint": "^4.6.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-unicorn": "^2.1.2",
"eslint-plugin-xo": "^1.0.0",
"isomorphic-fetch": "^2.2.1",
"json-server": "^0.12.0",
"nyc": "^11.2.1",
"onchange": "^3.2.1",
"test-listen": "^1.0.2"
},
"ava": {
"require": [
"babel-core/register"
],
"verbose": "true"
},
"nyc": {
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false,
"check-coverage": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"reporter": [
"text",
"lcov"
],
"cache": true,
"all": true
},
"dependencies": {
"over-extend": "^1.1.1"
}
}