-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.87 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
76
77
78
{
"name": "subscribe-me",
"version": "0.1.15",
"description": "subscription manager",
"license": "MIT",
"repository": "yaplas/subscribe-me",
"main": "dist/index.js",
"author": {
"name": "Agustin Lascialandare",
"email": "lascialandare@gmail.com",
"url": "https://github.com/yaplas"
},
"files": [
"dist",
"src"
],
"scripts": {
"test": "jest",
"coverage": "npm test -- --coverage",
"postcoverage": "open-cli coverage/lcov-report/index.html",
"lint": "eslint .",
"docs": "documentation readme src --section=API",
"postdocs": "git add README.md",
"clean": "rimraf dist",
"prebuild": "npm run docs && npm run clean",
"build": "babel src -d dist",
"prerelease": "npm run lint && npm test && npm run build",
"release": "standard-version",
"postpublish": "git push origin master --follow-tags"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"keywords": [
"subscribe-me",
"reactive",
"events",
"subscriptions",
"rxjs"
],
"dependencies": {
"mingo": "2.3.5",
"pg": "7.12.1",
"pg-cursor": "2.0.0",
"ramda": "0.26.1",
"rxjs": "6.5.3",
"uuid": "3.3.3"
},
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.5",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/preset-env": "7.4.5",
"babel-eslint": "10.0.2",
"babel-jest": "24.8.0",
"documentation": "11.0.1",
"eslint": "6.0.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "5.0.0",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-prettier": "3.1.0",
"husky": "2.4.1",
"jest": "24.8.0",
"lint-staged": "8.2.1",
"open-cli": "5.0.0",
"prettier": "1.18.2",
"rimraf": "2.6.3",
"standard-version": "6.0.1"
}
}