forked from scientistnik/karmachain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.01 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
{
"name": "karmachain",
"version": "0.5.4",
"description": "Package for work with Karma blockchain",
"main": "index.js",
"bin": {
"karma": "./bin/index.js"
},
"scripts": {
"dev": "nodemon --exec 'npm' run build --watch src",
"build": "babel src -d dist",
"browserify": "browserify --full-paths lib/index.js --standalone KarmaApi -o dist/karma-api.js -d",
"postbrowserify": "uglifyjs --compress --mangle --sequences --drop_console --output dist/karma-api.min.js -- dist/karma-api.js"
},
"author": "scientistnik <[email protected]> (https://github.com/scientistnik)",
"repository": "github:Karma-blockchain/karmachain",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.1.2",
"karmachain-transactions": "^0.5.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.3.4",
"nodemon": "^1.17.5"
}
}