-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.27 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
{
"name": "braspag-sdk",
"version": "0.0.3",
"main": "src/index.js",
"repository": "[email protected]:italoiz/braspag-sdk-nodejs.git",
"author": "Italo Izaac <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint --ext .js ./src/",
"pretest": "npm run lint",
"test": "mocha __tests__/**/*.test.js --exit",
"test:watch": "npm run test -- --watch",
"test:coverage": "nyc npm test",
"coveralls": "npm run test:coverage && nyc report --reporter=text-lcov | coveralls",
"commit": "git-cz"
},
"nyc": {
"reporter": [
"text",
"html"
],
"include": [
"src/**/*.js"
],
"exclude": [
"**/*.test.js",
"**/*.spec.js"
]
},
"devDependencies": {
"chai": "^4.2.0",
"commitizen": "^3.1.1",
"coveralls": "^3.0.3",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^6.1.4",
"nyc": "^14.0.0"
},
"dependencies": {
"axios": "^0.18.0",
"lodash": "^4.17.11"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}