forked from MatrixAI/Polykey-Desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·67 lines (67 loc) · 1.73 KB
/
package.json
File metadata and controls
executable file
·67 lines (67 loc) · 1.73 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
66
67
{
"name": "polykey",
"version": "0.0.1",
"description": "Distributed peer to peer secret sharing and management system",
"author": "Roger Qiu <roger.qiu@matrix.ai> https://matrix.ai",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/MatrixAI/PolyKey"
},
"homepage": "https://matrix.ai/",
"keywords": [
"gpg",
"openpgp",
"passwords",
"secrets",
"git"
],
"bin": {
"build": "babel src/ -d lib/",
"polykey": "bin/polykey",
"prepublish": "npm run build"
},
"scripts": {
"flow": "flow"
},
"dependencies": {
"co": "^4.6.0",
"commander": "^2.9.0",
"errno": "^0.1.4",
"node-git": "git+https://github.com/MatrixAI/node-git.git",
"js-csp": "^0.9.3",
"kind-of": "^4.0.0",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"openpgp": "^2.5.4",
"react": "15.4.1",
"react-dom": "15.4.1",
"react-native": "0.42.3",
"react-native-cli": "^2.0.1",
"react-native-openpgp": "^1.0.3",
"react-router": "^4.1.1",
"rimraf": "^2.6.1",
"stat-mode": "^0.2.2",
"styled-components": "^2.0.0",
"sugar": "^2.0.4",
"tar": "^3.1.5",
"vorpal": "^1.12.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-partial-application": "^1.4.0",
"babel-plugin-root-import": "^5.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babili": "^0.1.3",
"electron-rebuild": "^1.5.11",
"eslint": "^3.19.0",
"flow-bin": "^0.47.0",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
}
}