-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.99 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.99 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
{
"name": "sigaa-egressos",
"version": "0.0.0-development",
"description": "A simple lib to put and get messagages from a emitter broker",
"main": "dist/index.js",
"repository": "https://github.com/matheuspiment/sigaa-egressos",
"author": "Matheus Pimenta <matheuspiment@hotmail.com> (https://github.com/matheuspiment)",
"contributors": [
"Antonio Arlis <antonio.silva27@outlook.com> (https://github.com/antoni-s)",
"Beatriz Nogueira <beatrizncsilveira@gmail.com> (https://github.com/BeatrizN)",
"Keslley Lima <keslleyls@outlook.com> (https://github.com/keslleylima)"
],
"license": "MIT",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"add-contributor": "kcd-scripts contributors add",
"commit": "git-cz",
"test": "jest --coverage test/**.test.js",
"check-coverage": "nyc check-coverage --statements 75 --branches 75 --functions 75 --lines 75",
"cover": "nyc yarn test",
"prebuild": "rimraf dist",
"build": "yarn build:main",
"build:main": "babel --copy-files --out-dir dist --ignore *.test.js src",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"dependencies": {
"emitter-io": "^1.39.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.5",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.0.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-plugin-import": "^2.13.0",
"jest": "^23.2.0",
"kcd-scripts": "^0.39.2",
"nyc": "^12.0.2",
"rimraf": "^2.6.2",
"semantic-release": "^19.0.3"
},
"engines": {
"node": ">=16 <=18"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}