forked from stellar-expert/albedo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.44 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
{
"name": "@albedo-link/intent",
"version": "0.11.2",
"description": "A lightweight browser wrapper for Albedo API that provides a promise-based interface for all supported intents.",
"author": "StellarExpertTeam<info@stellar.expert>",
"license": "MIT",
"homepage": "https://github.com/stellar-expert/albedo",
"bugs": {
"url": "https://github.com/stellar-expert/albedo/issues",
"email": "info@stellar.expert"
},
"repository": {
"type": "git",
"url": "https://github.com/stellar-expert/albedo.git"
},
"scripts": {
"build": "webpack --mode=production --config ./webpack.config.js",
"postbuild": "node build/generate-docs.js",
"test": "mocha"
},
"main": "./lib/albedo.intent.js",
"module": "./src/index.js",
"types": "./src/index.d.ts",
"keywords": [
"albedo",
"stellar",
"SSO",
"signer",
"intent",
"multi-sig"
],
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/register": "^7.14.5",
"babel-loader": "^8.2.2",
"chai": "^4.3.4",
"mocha": "^9.0.0",
"sinon": "^11.1.1",
"terser-webpack-plugin": "^5.1.3",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2"
},
"mocha": {
"recursive": true,
"require": [
"@babel/register",
"./test/test-helper.js"
],
"ui": "bdd"
}
}