-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.27 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
{
"private": true,
"name": "@worldbrain/storex-hub-demo-memex-gist-sharer",
"version": "0.1.0",
"description": "Demo app for Storex Hub that shares pages saved in Memex to a Gist",
"scripts": {
"start": "ts-node ts/main.ts",
"prepare": "tsc",
"prepare:watch": "npm run prepare -- -w",
"test": "mocha --require ts-node/register \"ts/**/*.test.ts\"",
"test:watch": "mocha -r source-map-support/register -r ts-node/register \"ts/**/*.test.ts\" --watch --watch-extensions ts",
"test:coverage": "rm -rf lib ; yarn prepare && nyc --reporter=html --reporter=text mocha 'lib/**/*.test.js'"
},
"keywords": [],
"author": "Vincent den Boer",
"dependencies": {
"@worldbrain/storex": "^0.4.1",
"@worldbrain/storex-middleware-change-watcher": "^0.1.1",
"@worldbrain/storex-hub": "^0.2.1",
"@worldbrain/memex-storex-hub": "^0.1.2",
"socket.io-client": "^2.3.0",
"gist-client": "^1.1.1",
"lodash": "^4.17.10"
},
"devDependencies": {
"@types/expect": "^1.20.4",
"@types/lodash": "^4.14.149",
"@types/mocha": "^2.2.44",
"@types/node": "^10.12.11",
"@types/socket.io-client": "^1.4.32",
"expect": "^23.5.0",
"mocha": "^4.0.1",
"source-map-support": "0.5.16",
"typescript": "^3.8.0",
"ts-node": "^8.8.1"
}
}