forked from bcndev/bytecoin-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 797 Bytes
/
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
{
"name": "@bcndev/bytecoin",
"version": "0.2.0",
"description": "Utility package for Bytecoin",
"repository": "https://github.com/bcndev/bytecoin-js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"scripts": {
"build": "tsc && browserify --standalone bcn --bare ./dist/index.js -o ./dist/bytecoin.js",
"test": "jest",
"prepare": "npm run build",
"prepublishOnly": "npm test"
},
"keywords": [],
"author": "Bytecoin Developer <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^24.0.15",
"browserify": "^16.3.0",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"dependencies": {
"js-sha3": "^0.8.0"
}
}