mirror of
https://github.com/darkwire/darkwire.io.git
synced 2025-07-18 02:44:01 +00:00
* Install react-testing-library * Add some trivial tests with snapshot * Add File transfer tests * Add Home component test * Add Chat tests * Add tests for nav * 100% coverage for About component * 100% coverage room link * 100% coverage for RoomLocked * 100% coverage for T component * 100% coverage Settings * More 90% coverage for Chat component * Ignore some file from coverage * 100% coverage fo redux actions * 100% coverage for translations * Near 100% coverage for reducer * Better coverage for Home component * Run tests in circleCI
30 lines
768 B
JSON
30 lines
768 B
JSON
{
|
|
"name": "darkwire.io",
|
|
"version": "2.0.0",
|
|
"description": "encrypted web chat",
|
|
"main": "index.js",
|
|
"repository": "https://github.com/darkwire/darkwire.io.git",
|
|
"engines": {
|
|
"yarn": "1.x"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Daniel Seripap"
|
|
},
|
|
{
|
|
"name": "Alan Friedman"
|
|
}
|
|
],
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "./build.sh",
|
|
"start": "cd server && CLIENT_DIST_DIRECTORY='../client/build' yarn start",
|
|
"setup": "yarn && cd client && yarn && cd ../server && yarn",
|
|
"dev": "concurrently 'cd client && yarn start' 'cd server && yarn dev'",
|
|
"test": "concurrently 'cd client && yarn coverage' 'cd server && yarn test --watchAll=false'"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^4.1.0"
|
|
}
|
|
}
|