-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 956 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 956 Bytes
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
{
"name": "ecommpay",
"version": "1.0.0",
"description": "Ecommpay Javascript package",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "jest",
"test:coverage": "jest --coverage"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/__tests__/data/",
"<rootDir>/__tests__/mock/",
"<rootDir>/node_modules/",
"<rootDir/index.js"
],
"collectCoverage": true,
"coverageReporters": [
"lcov"
]
},
"contributors": [
{
"name": "Zhukov Roman",
"email": "r.zhukov@it.ecommpay.com"
},
{
"name": "Aslan Evloev",
"email": "a.evloev@it.ecommpay.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/ITECOMMPAY/paymentpage-sdk-js"
},
"license": "MIT",
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"jest": "^23.2.0"
}
}