-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.31 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
{
"name": "reforest-fungus",
"version": "1.0.11",
"description": "Client-side JavaScript SDK to read/write wallets and transactions to Basecoin",
"main": "dist/index.js",
"scripts": {
"start": "babel-watch index.js",
"example": "babel-watch examples/interfaceWithLotion.js",
"build": "babel index.js -d dist",
"test:dev": "babel-watch test.js",
"test": "jest",
"release": "git pull && npm run test && git add . && npm run build && git commit -m 'deploy' && git push origin master && npm version patch && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reforest/fungus.git"
},
"author": "Ryan Cheung",
"license": "MIT",
"bugs": {
"url": "https://github.com/reforest/fungus/issues"
},
"jest": {
"testEnvironment": "node"
},
"homepage": "https://github.com/reforest/fungus#readme",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-loader": "7.1.4",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.6.1",
"babel-preset-es2017": "^6.24.1",
"babel-watch": "2.0.7"
},
"dependencies": {
"axios": "0.18.0",
"babel-runtime": "6.26.0",
"crypto": "1.0.1",
"jest": "^22.4.3",
"secp256k1": "3.5.0",
"sha.js": "2.4.11",
"varstruct": "6.1.2"
}
}