-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
102 lines (102 loc) · 2.12 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
92
93
94
95
96
97
98
99
100
101
102
{
"name": "shopware-api-client",
"version": "1.6.0",
"description": "node client for shopware api",
"main": "dist/index.js",
"author": "Jakub Juszczak <[email protected]>",
"license": "MIT",
"scripts": {
"start": "gulp",
"build": "gulp transpile",
"prepublish": "npm run build",
"cover": "nyc --reporter lcov --reporter text npm run test",
"check-coverage": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"lint": "xo",
"test-only": "ava --timeout=30s",
"test": "npm run lint && ava --timeout=30s --verbose"
},
"engines": {
"node": ">=6.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/apertureless/shopware-api-client.git"
},
"files": [
"dist"
],
"keywords": [
"es6",
"shopware",
"api",
"client",
"rest",
"async"
],
"ava": {
"failFast": false,
"files": [
"test/*.js"
],
"require": [
"babel-core/register"
]
},
"xo": {
"esnext": true,
"space": true,
"semicolon": false,
"ignores": [
"test/_fixtures/**",
"cli/**",
"docs/**"
],
"rules": {
"import/no-unassigned-import": 0,
"import/no-dynamic-require": 0,
"import/no-unresolved": 0,
"max-depth": 0,
"max-params": 0,
"no-use-before-define": 0,
"complexity": 0,
"no-control-regex": 0
}
},
"babel": {
"presets": [
"es2015"
],
"ignore": "test/**",
"env": {
"development": {
"sourceMaps": "inline"
}
}
},
"devDependencies": {
"ava": "^0.19.1",
"ava-spec": "^1.1.0",
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"codecov.io": "^0.1.6",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-cached": "^1.1.1",
"nyc": "^10.3.2",
"tap-nyan": "^1.1.0",
"xo": "^0.18.2"
},
"dependencies": {
"request": "^2.87.0",
"request-promise-native": "^1.0.4"
},
"nyc": {
"reporter": [
"html",
"lcov",
"text"
]
}
}