-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.63 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.63 KB
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
{
"name": "marketcloud-js",
"version": "2.3.6",
"description": "Marketcloud is a mobile first backend for eCommerce apps. This is the Javascript (Browser) Client",
"main": "dist/marketcloud.min.js",
"directories": {
"example": "examples",
"test": "test"
},
"scripts": {
"test": "mocha test",
"build" : "webpack --env=prod --progress --profile --colors",
"coverage-report": "istanbul report --root coverage lcov",
"eslint" : "eslint src; eslint tests;"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Marketcloud/marketcloud-js.git"
},
"keywords": [
"Marketcloud",
"ecommerce",
"javascript",
"browser"
],
"author": "Herapi SRLS",
"license": "MIT",
"bugs": {
"url": "https://github.com/Marketcloud/marketcloud-js/issues"
},
"homepage": "https://github.com/Marketcloud/marketcloud-js#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.8",
"babel-plugin-istanbul": "^4.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"bower": "^1.8.0",
"chai": "^3.5.0",
"cross-env": "^4.0.0",
"eslint": "^3.16.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.2",
"eslint-plugin-standard": "^2.0.1",
"mocha": "^3.2.0",
"nyc": "^10.2.0",
"sinon": "^1.17.6",
"webpack": "^1.13.3"
},
"nyc": {
"require": [
"babel-register"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
},
"dependencies": {
"bluebird": "^3.4.6"
}
}