forked from GeorgeSapkin/pubsub-store
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 877 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 877 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
{
"name": "pubsub-store",
"version": "0.8.1",
"description": "Pub/Sub Store",
"main": "src/index.js",
"scripts": {
"test": "jest --coverage --silent=false --notify",
"test-travis": "npm test && cat ./coverage/lcov.info | coveralls"
},
"repository": "GeorgeSapkin/pubsub-store",
"keywords": [
"pubsub"
],
"author": "George Sapkin",
"license": "MIT",
"dependencies": {
"ramda": "^0.27.1"
},
"devDependencies": {
"eslint": "^7.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^26.5.3",
"sinon": "^9.2.0"
},
"jest": {
"collectCoverageFrom": [
"src/*.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/examples/"
]
}
}