-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.1 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
{
"name": "@futuretense/secret-memo",
"version": "1.0.0",
"description": "",
"main": "lib/commonjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"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",
"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 <[email protected]>",
"license": "MIT",
"dependencies": {
"@futuretense/stellar-box": "^1.0.1",
"long": "^4.0.0",
"stellar-sdk": "^4.1.0"
},
"devDependencies": {
"@types/node": "^13.13.0",
"ava": "^3.7.0",
"ava-ts": "^0.25.2",
"gh-pages": "^2.2.0",
"ts-node": "^8.8.2",
"typedoc": "^0.17.4",
"typescript": "^3.8.3"
}
}