-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.72 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
{
"name": "pfs-demo-web-socket",
"version": "1.0.0",
"description": "A PFS demo",
"main": "dist/index.js",
"scripts": {
"browserify": "browserify ./dist/index.js --standalone MasqSync > dist/MasqSync.js",
"build": "babel src --presets env --out-dir dist/",
"server": "node dist/server.js",
"test": "jest test/*.test.js --runInBand --verbose --coverage --forceExit",
"watch": "jest --watch",
"prepublish": "npm run build",
"start": "concurrently \" npm run server\" \"npm run build && npm run browserify && http-server .\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/leventdem/PFS-demo-web-socket.git"
},
"keywords": [
"PFS",
"ECDHE",
"crypto",
"encryption",
"asymmetric encryption",
"RSA",
"RSA-PSS",
"webcryptoAPI"
],
"author": "Levent DEMIR",
"license": "ISC",
"bugs": {
"url": "https://github.com/leventdem/PFS-demo-web-socket/issues"
},
"homepage": "https://github.com/leventdem/PFS-demo-web-socket#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-runtime": "^6.26.0",
"coveralls": "^3.0.2",
"jest": "^24.1.0",
"socketcluster-server": "^14.3.1",
"standard": "^12.0.1"
},
"dependencies": {
"browserify": "^16.2.3",
"concurrently": "^4.0.1",
"http-server": "^0.11.1",
"masq-common": "git+https://github.com/leventdem/masq-common.git",
"masq-crypto": "git+https://github.com/leventdem/masq-crypto.git",
"socketcluster-client": "^14.2.1"
},
"standard": {
"ignore": [
"dist"
],
"env": [
"jest"
]
},
"jest": {
"testURL": "http://localhost"
}
}