This repository has been archived by the owner on Mar 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
89 lines (89 loc) · 2.25 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
79
80
81
82
83
84
85
86
87
88
89
{
"name": "dechat_es5b",
"version": "1.0.0",
"description": "A decentralized chat",
"private": true,
"presets": [
"@babel/preset-es2016"
],
"main": "main.js",
"scripts": {
"start": "webpack && node App.js",
"electronstart": "webpack && electron .",
"electronpack": "webpack && electron-packager . DeChat ES5B --electron-version=4.1.3",
"test": "mocha \"./test/*\"",
"test-with-coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"acceptance": "cd acceptance-tests && cucumber-js",
"travisRepo": "./test/travisRepo.sh",
"travis-deploy-once": "travis-deploy-once",
"puml": "puml",
"docs": "asciidoctorjs adocs/index.adoc --destination-dir docs"
},
"bin": {},
"repository": {
"type": "git",
"url": "git+https://github.com/arquisoft/dechat_es5b.git"
},
"author": "Equipo ES5B",
"license": "MIT",
"bugs": {
"url": "https://github.com/arquisoft/dechat_es5b/issues"
},
"homepage": "https://github.com/arquisoft/dechat_es5b",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.2",
"@babel/register": "^7.4.0",
"asciidoctor-cli": "^1.5.6-rc.1",
"asciidoctor.js": "^1.5.9",
"babel-plugin-istanbul": "^5.1.1",
"chai": "4.2.x",
"coveralls": "^3.0.3",
"electron": "^4.1.3",
"electron-packager": "^13.1.1",
"cucumber": "^5.1.0",
"eslint": "^5.x",
"gulp": "^4.0.0",
"gulp-cli": "^2.1.0",
"gulp-exec": "^3.0.2",
"gulp-puml": "^0.1.24",
"gulp-svg2png": "^2.0.2",
"jsdoc": "^3.5.5",
"mocha": "^6.0.2",
"mocha-lcov-reporter": "^1.3.0",
"node-plantuml": "^0.8.1",
"nyc": "^13.3.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"codacy-coverage": "^3.4.0",
"cucumber": "^5.1.0",
"express": "^4.16.4",
"jsonld-request": "^0.2.0",
"path": "^0.12.7",
"rdflib": "^0.20.0",
"solid-file-client": "^0.4.9",
"standard": "^12.0.1"
},
"directories": {
"doc": "docs",
"test": "test"
},
"keywords": [
"solid",
"chat",
"message",
"discusssion",
"decentralized",
"web",
"rdf",
"ldp",
"linked",
"pane",
"app",
"data"
]
}