-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 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
38
39
40
41
42
43
44
{
"name": "dswjs-lib",
"version": "0.0.3",
"description": "A javascript DSW library for node.js and browsers.",
"main": "./src/index.js",
"types": "./types/index.d.ts",
"scripts": {
"sandbox": "node sandbox.mjs",
"build": "npm run clean && tsc -p ./tsconfig.json && npm run formatjs",
"formatjs": "npm run prettierjs -- --write",
"prettierjs": "prettier \"src/**/*.js\" --ignore-path ./.prettierignore",
"clean": "rimraf src types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/decenomy/dswjs-lib.git"
},
"files": [
"src",
"types"
],
"keywords": [
"DECENOMY",
"NodeJS",
"DSW"
],
"author": "The DECENOMY Core Developers",
"license": "MIT",
"bugs": {
"url": "https://github.com/decenomy/dswjs-lib/issues"
},
"homepage": "https://github.com/decenomy/dswjs-lib#readme",
"devDependencies": {
"@types/node": "^16.10.3",
"bip39": "^3.0.4",
"bitcoinjs-lib": "^5.2.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.3"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
}