This repository was archived by the owner on Jan 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.48 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.48 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
62
63
64
65
{
"name": "@h3/impact",
"version": "0.1.0",
"description": "Org-friendly team chat",
"main": "index.js",
"scripts": {
"build": "webpack",
"lint": "eslint .",
"pre-commit": "npm run lint && npm run test",
"start": "node ./index.js --port 8000",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HackerHappyHour/impact.git"
},
"keywords": [
"team",
"chat",
"enterprise",
"communication",
"collaboration"
],
"contributors": [
"Chris Jaynes <chris@jaynes.me> (https://github.com/geekytime)",
"Brian Vanderbusch <brian@hackerhappyhour.com> (https://github.com/LongLiveCHIEF)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/HackerHappyHour/impact/issues"
},
"homepage": "https://github.com/HackerHappyHour/impact#readme",
"engines": {
"node": "~5.3",
"npm": "~3.3"
},
"analyze": true,
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.7.2",
"babel-loader": "^6.2.4",
"chai": "~3.5.0",
"eslint": "~2.3.0",
"ghooks": "~1.0.3",
"jsdoc": "^3.4.0",
"mocha": "~2.4.5",
"webpack": "^1.12.14"
},
"dependencies": {
"@cycle/core": "^6.0.3",
"@cycle/dom": "^9.1.0",
"convict": "~1.1.2",
"good": "^6.6.0",
"good-console": "^5.3.1",
"hapi": "^13.0.0",
"inert": "^3.2.0",
"rethinkdb": "~2.2.2",
"rx": "^4.1.0"
},
"config": {
"ghooks": {
"pre-commit": "npm run pre-commit"
}
}
}