69 lines
1.8 KiB
JSON
69 lines
1.8 KiB
JSON
{
|
|
"name": "embarkjs",
|
|
"version": "0.4.0",
|
|
"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",
|
|
"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",
|
|
"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.0.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",
|
|
"rimraf": "2.6.2",
|
|
"webpack": "4.16.1",
|
|
"webpack-cli": "3.0.8"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.11.3"
|
|
}
|
|
}
|