This repository has been archived by the owner on Jan 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
142 lines (142 loc) · 5.37 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "beaker-plugin-safe-authenticator",
"version": "0.5.0",
"description": "SAFE Browser add-on for authenticating user to access SAFE Network",
"main": "index.js",
"scripts": {
"grep-error-codes": "./node_modules/.bin/babel-node grep_error_codes.js",
"lint": "eslint src test",
"fix-lint": "eslint --fix src test",
"test": "cross-env NODE_ENV=test BABEL_DISABLE_CACHE=1 mocha --compilers js:babel-register --recursive --require ./test/setup.js test/**/*.spec.js",
"init-submodule": "git submodule update --init --recursive",
"build-app": "cross-env NODE_ENV=production node -r babel-register ./node_modules/webpack/bin/webpack --config webpack.config.development.js --progress --profile --colors",
"build-api": "cross-env NODE_ENV=production node -r babel-register ./node_modules/webpack/bin/webpack --config webpack.config.api.js --progress --profile --colors",
"build-protocol": "cross-env NODE_ENV=production node -r babel-register ./node_modules/webpack/bin/webpack --config webpack.config.protocol.js --progress --profile --colors",
"build": "concurrently \"npm run build-app\" \"npm run build-api\" \"npm run build-protocol\"",
"copy-binaries:unix": "cp -f ./system_uri/target/release/*system_uri* ./src/ffi && cp -f ./native/target/release/*safe_authenticator* ./src/ffi",
"copy-binaries:win": "powershell.exe \"Copy-Item -Path .\\system_uri\\target\\release\\system_uri.dll -Destination .\\src\\ffi -force; if ($?) {Copy-Item -Path .\\native\\target\\release\\safe_authenticator.dll -Destination .\\src\\ffi -force;}\"",
"clean-libs": "cd system_uri && cargo clean && cd ../native && cargo clean && cd ..",
"build-system-uri": "cd system_uri && cargo update && cargo build --release && cd ../",
"build-native": "cd ./native/safe_authenticator && cargo update && cargo build --release && cd ../../",
"build-native-mock": "cd ./native/safe_authenticator && cargo update && cargo build --release --features \"use-mock-routing\" && cd ../../",
"build-libs:actual": "npm run build-native && npm run build-system-uri",
"build-libs:mock": "npm run build-native-mock && npm run build-system-uri",
"build-libs": "npm run init-submodule && node ./build_libs.js",
"postinstall": "download_deps --package package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maidsafe/beaker-plugin-safe-authenticator.git"
},
"author": {
"name": "MaidSafe",
"email": "[email protected]",
"url": "https://github.com/maidsafe"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/maidsafe/beaker-plugin-safe-authenticator/issues"
},
"keywords": [
"maidsafe",
"safe authenticator",
"beaker",
"browser",
"safe",
"network",
"plugin",
"protocol"
],
"homepage": "https://github.com/maidsafe/beaker-plugin-safe-authenticator#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.7",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"concurrently": "^3.1.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^3.1.3",
"css-loader": "^0.26.0",
"electron": "^1.7.6",
"eslint": "^3.10.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"file-loader": "^0.9.0",
"fs-extra": "^2.0.0",
"json-loader": "^0.5.4",
"mocha": "^3.1.2",
"node-sass": "^3.13.0",
"redux-devtools": "^3.3.1",
"redux-logger": "^2.7.4",
"resolve-url-loader": "^1.6.0",
"sass-loader": "^4.0.2",
"should": "^11.1.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.3"
},
"dependencies": {
"classnames": "^2.2.5",
"deps_downloader": "https://s3.eu-west-2.amazonaws.com/deps-downloader/deps_downloader-0.1.0.tgz",
"enum": "^2.3.0",
"i18n": "^0.8.3",
"lodash": "^4.17.4",
"opensans-npm-webfont": "0.0.2",
"react": "^15.4.0",
"react-dom": "^15.4.0",
"react-redux": "^4.4.6",
"react-redux-i18n": "^0.1.1",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.7",
"redux": "^3.6.0",
"redux-promise-middleware": "^4.2.0",
"redux-thunk": "^2.1.0",
"ref-array": "^1.2.0",
"ref-struct": "^1.1.0",
"url": "^0.11.0",
"zxcvbn": "^4.4.1"
},
"optionalDependencies": {
"ffi": "^2.2.0",
"ref": "^1.3.3"
},
"download_deps": {
"system_uri": {
"mirror": "https://s3.eu-west-2.amazonaws.com/system-uri",
"version": "v0.4.0",
"targetDir": "dist",
"filePattern": "^.*\\.(dll|so|dylib)$"
},
"safe_authenticator": {
"mirror": "https://s3.eu-west-2.amazonaws.com/safe-client-libs",
"version": "v0.6.0",
"targetDir": "dist",
"filename": "safe_authenticator",
"filePattern": "^.*\\.(dll|so|dylib)$",
"force": true
},
"ENV": {
"dev": {
"safe_authenticator": {
"filename": "safe_authenticator-mock"
}
},
"test": {
"system_uri": {
"targetDir": "src/ffi"
},
"safe_authenticator": {
"filename": "safe_authenticator-mock",
"targetDir": "src/ffi"
}
}
}
}
}