-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.38 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.38 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
{
"name": "@futuretense/stellar-multisig",
"version": "0.2.0",
"description": "",
"main": "lib/commonjs/index.js",
"browser": "lib/esm/browser.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"dependencies": {
"stellar-sdk": "^4.0.2"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.7.10",
"ava": "^3.5.0",
"ava-ts": "^0.25.2",
"gh-pages": "^2.2.0",
"ts-node": "^8.8.1",
"typedoc": "^0.17.3",
"typescript": "^3.8.3"
},
"scripts": {
"clean": "rm -rf lib && rm -rf temp",
"build": "npm run build:cjs && npm run build:esm && npm run build:types",
"build:esm": "npx tsc -p tsconfig.json -m es6 --outDir lib/esm",
"build:cjs": "npx tsc -p tsconfig.json -m commonjs --outDir lib/commonjs",
"build:types": "npx tsc -p config/tsconfig.types.json && npx api-extractor run -c config/api-extractor.json --local",
"build:docs": "npx typedoc --options config/typedoc.json --tsconfig tsconfig.json",
"publish:docs": "npx gh-pages -m 'Updates' -d docs",
"test": "npx ava-ts"
},
"author": "Johan Stén <johan@futuretense.io>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/future-tense/stellar-multisig.git"
},
"bugs": {
"url": "https://github.com/future-tense/stellar-multisig/issues"
},
"homepage": "https://github.com/future-tense/stellar-multisig#readme"
}