This repository has been archived by the owner on Jul 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.53 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
{
"name": "jinaga",
"version": "2.5.2",
"description": "Browser-Server-Browser Synchroninzation",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"clean": "rm -rf ./dist",
"build": "webpack",
"test": "mocha --opts mocha.opts",
"test:watch": "mocha --opts mocha.opts --watch",
"dev": "nodemon -e ts -w ./src -x npm run test:watch",
"prepublishOnly": "npm run clean && npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/michaellperry/jinaga.git"
},
"keywords": [
"messaging"
],
"author": "Michael L Perry",
"license": "MIT",
"bugs": {
"url": "https://github.com/michaellperry/jinaga/issues"
},
"homepage": "http://jinaga.com",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/express": "^4.17.3",
"@types/mocha": "^7.0.2",
"@types/node-forge": "^0.9.2",
"@types/passport": "^1.0.3",
"@types/pg": "^7.14.3",
"acorn": "^7.1.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"del": "^5.1.0",
"mocha": "^7.1.1",
"nodemon": "^2.0.2",
"source-map-support": "^0.5.16",
"ts-loader": "^6.2.2",
"ts-node": "^8.8.1",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"express": "^4.17.1",
"node-forge": "^0.10.0",
"passport": "^0.4.1",
"pg": "^8.5.1",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1"
}
}