-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.34 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
{
"name": "apple_categories",
"version": "1.0.0",
"description": "apple categories",
"main": "index.js",
"scripts": {
"eslint": "eslint .",
"unit": " ava --verbose",
"watch:test": "npm run unit -- --watch",
"cover": "nyc npm run unit",
"check-coverage": "nyc check-coverage --statements 85 --branches 85 --functions 85 --lines 85",
"test": "node index.js"
},
"eslintConfig": {
"extends": "google"
},
"repository": {
"type": "git",
"url": "https://github.com/adviceinteractivegroup/apple-categories"
},
"keywords": [
"apple",
"advice",
"interactive"
],
"author": "advice interactive",
"license": "ISC",
"bugs": {
"url": "https://github.com/adviceinteractivegroup/apple-categories/issues"
},
"devDependencies": {
"ava": "^0.16.0",
"aws-sdk": "^2.6.2",
"eslint": "^3.5.0",
"eslint-config-google": "^0.6.0",
"gulp": "^3.9.1",
"gulp-ava": "^0.14.1",
"gulp-eslint": "^3.0.1",
"gulp-zip": "^3.2.0",
"lambda-local": "0.0.7",
"nyc": "^8.1.0",
"standard": "^8.0.0"
},
"dependencies": {
"bluebird": "^3.4.1",
"ramda": "^0.22.1",
"request": "^2.74.0"
},
"ava": {
"files": [
"unitTests/*.js"
],
"failFast": true,
"tap": true
},
"nyc": {
"reporter": [
"lcov",
"text",
"html"
]
}
}