forked from truevault-safe/truevault-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.63 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
{
"name": "truevault",
"description": "The official TrueVault JavaScript SDK",
"version": "1.3.0",
"repository": {
"type": "git",
"url": "https://github.com/truevault/truevault-js-sdk"
},
"keywords": [
"truevault",
"js",
"javascript",
"sdk",
"rest",
"api"
],
"scripts": {
"test": "mocha --require babel-register --require babel-polyfill",
"build-browser-tests": "webpack --config webpack.browser-test-config.js",
"build-lambda-tests": "webpack --config webpack.lambda-test-config.js && pushd test/lambda && rm -f ../lambda.zip && zip -r ../lambda.zip . && popd",
"build": "webpack --config webpack.node-config.js && webpack --config webpack.browser-config.js"
},
"license": "BSD-3-Clause",
"main": "build/index-node.js",
"browser": "build/index-web.js",
"files": [
"build/index-node.js",
"build/index-web.js",
"index.js",
"README.md",
"LICENSE"
],
"dependencies": {
"babel-preset-env": "^1.5.2",
"base-64": "^0.1.0",
"content-disposition": "^0.5.2",
"form-data": "^2.3.2",
"node-fetch": "^2.1.2",
"urijs": "^1.18.12"
},
"devDependencies": {
"ajv": "^6.4.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-loader": "^7.0.0",
"babel-polyfill": "^6.23.0",
"babel-register": "^6.26.0",
"documentation": "^4.0.0-rc.1",
"dotenv": "^5.0.1",
"dotenv-webpack": "^1.5.5",
"mocha": "^5.0.5",
"otplib": "^8.0.1",
"regenerator-runtime": "^0.11.1",
"should": "^13.2.1",
"string-to-stream": "^1.1.0",
"uglifyjs-webpack-plugin": "^1.2.4",
"uuid": "^3.2.1",
"webpack": "^2.6.1"
}
}