76 lines
2.1 KiB
JSON
76 lines
2.1 KiB
JSON
{
|
|
"name": "embarkjs",
|
|
"version": "0.4.5",
|
|
"description": "JavaScript library for easily interacting with web3 technologies",
|
|
"main": "dist/node/index.js",
|
|
"browser": {
|
|
"./dist/node/index.js": "./dist/browser/browser.js"
|
|
},
|
|
"browserslist": [
|
|
"last 1 version",
|
|
"not dead",
|
|
"> 0.2%"
|
|
],
|
|
"files": [
|
|
"dist",
|
|
"embark.min.js",
|
|
"src"
|
|
],
|
|
"scripts": {
|
|
"babel": "npm run babel:browser && npm run babel:node && npm run babel:node:async",
|
|
"babel:browser": "cross-env BABEL_ENV=browser babel --out-dir dist/browser src",
|
|
"babel:node": "cross-env BABEL_ENV=node babel --out-dir dist src",
|
|
"babel:node:async": "cross-env BABEL_ENV=node:async babel --out-dir dist src/node",
|
|
"babel:watch": "npm-run-all -p babel:watch:*",
|
|
"babel:watch:browser": "npm run babel:browser -- --verbose --watch",
|
|
"babel:watch:node": "npm run babel:node -- --verbose --watch",
|
|
"build": "npm run clean && npm run babel && npm run webpack",
|
|
"clean": "rimraf dist embark.min.js embarkjs-*.tgz package",
|
|
"http-server": "http-server",
|
|
"prepare": "npm run build",
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"webpack": "webpack"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/embark-framework/EmbarkJS.git"
|
|
},
|
|
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"ethereum",
|
|
"dapps",
|
|
"ipfs",
|
|
"solidity",
|
|
"solc",
|
|
"blockchain",
|
|
"serverless"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/embark-framework/EmbarkJS/issues"
|
|
},
|
|
"homepage": "https://github.com/embark-framework/EmbarkJS#readme",
|
|
"dependencies": {
|
|
"@babel/runtime-corejs2": "7.0.0-rc.1",
|
|
"async": "2.6.1",
|
|
"async-es": "2.6.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "7.0.0-rc.1",
|
|
"@babel/core": "7.0.0-rc.1",
|
|
"@babel/plugin-transform-runtime": "7.0.0-rc.1",
|
|
"@babel/preset-env": "7.0.0-rc.1",
|
|
"ajv": "6.5.2",
|
|
"cross-env": "5.2.0",
|
|
"http-server": "0.11.1",
|
|
"npm-run-all": "4.1.5",
|
|
"rimraf": "2.6.2",
|
|
"webpack": "4.16.1",
|
|
"webpack-cli": "3.0.8"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.11.3",
|
|
"npm": ">=6.4.1"
|
|
}
|
|
}
|