-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.29 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
{
"main": "dist/index.js",
"scripts": {
"lint": "yarn prettier 'lib/index.ts' --write",
"pretest": "npm run clean && webpack",
"clean": "rimraf dist/",
"test": "mocha --require ts-node/register test/**/*.spec.ts",
"prepublishOnly": "npm test"
},
"gypfile": true,
"name": "@mydogeofficial/dogecoin-js",
"version": "0.1.2-dev.0",
"description": "Javascript wrapper for libdogecoin with Typescript support",
"repository": {
"type": "git",
"url": "git+https://github.com/mydoge-com/dogecoin-js.git"
},
"keywords": [
"doge",
"dogecoin",
"libdogecoin",
"javascript",
"typescript"
],
"author": "Alex Lewis",
"license": "MIT",
"bugs": {
"url": "https://github.com/mydoge-com/dogecoin-js/issues"
},
"homepage": "https://github.com/mydoge-com/dogecoin-js#readme",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"chai": "^4.3.7",
"mocha": "^10.1.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0"
},
"browser": {
"crypto": false,
"fs": false,
"path": false,
"os": false
}
}