-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.92 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
{
"name": "ecommeasy-client",
"version": "0.1.0",
"description": "EcommEasy API client library. Work on browser and server.",
"keywords": [
"ecommeasy",
"ecommeasy api",
"ecommeasy ajax",
"ecommeasy web store",
"ecommerce api",
"shopping cart api"
],
"bugs": "https://github.com/EcommEasy/ecommeasy-client/issues",
"license": "MIT",
"author": {
"name": "Sourav Kumar Nanda <[email protected]>",
"url": "https://github.com/souravinsights"
},
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/EcommEasy/ecommeasy-client"
},
"scripts": {
"build": "babel src -d lib",
"prepublishOnly": "npm run build",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prettier": "prettier --write \"src/**/*.js\"",
"precommit": "lint-staged",
"test": "jest --coverage --runInBand --coverageDirectory=reports/coverage/",
"test:watch": "jest --watchAll"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"jest": {
"reporters": [
"default",
"jest-junit"
],
"transform": {
"^.+\\.m?js$": "babel-jest"
}
},
"jest-junit": {
"output": "reports/junit/junit.xml",
"usePathForSuiteName": "true"
},
"dependencies": {
"cross-fetch": "^2.2.2",
"query-string": "^6.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.5.0",
"jest-junit": "^5.2.0",
"lint-staged": "^7.2.2",
"prettier": "^1.14.2"
}
}