81 lines
2.7 KiB
JSON
81 lines
2.7 KiB
JSON
{
|
|
"name": "embarkjs-plasma",
|
|
"version": "1.0.3",
|
|
"description": "EmbarkJS library for the OmiseGO Plasma plugin for Embark",
|
|
"main": "dist/index.js",
|
|
"browser": {
|
|
"./dist/index.js": "./dist/browser/index.js",
|
|
"xmlhttprequest": "window.XMLHttpRequest"
|
|
},
|
|
"browserslist": [
|
|
"last 1 version",
|
|
"not dead",
|
|
"> 0.2%"
|
|
],
|
|
"files": [
|
|
"src",
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"lint": "./node_modules/.bin/eslint src/",
|
|
"babel": "cross-env BABEL_ENV=node babel --out-dir dist src --source-maps",
|
|
"build": "npm-run-all build:**",
|
|
"build:browser": "cross-env BABEL_ENV=browser babel src --extensions \".js\" --out-dir dist/browser",
|
|
"build:node": "cross-env BABEL_ENV=node babel src --extensions \".js\" --out-dir dist --source-maps",
|
|
"// build:node:test": "cross-env BABEL_ENV=node:test babel test --extensions \".js\" --out-dir build-test --source-maps",
|
|
"ci": "npm run qa",
|
|
"clean": "npm run reset",
|
|
"package": "npm pack",
|
|
"qa": "npm-run-all build test package",
|
|
"reset": "npx rimraf .nyc_output build-test coverage dist embarkjs-omg-*.tgz package",
|
|
"start": "npm run watch",
|
|
"// test": "nyc --reporter=html --reporter=json mocha \"build-test/**/*.js\" --exit --no-timeouts --require source-map-support/register",
|
|
"watch": "run-p \"build:** -- --verbose --watch\""
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/embark-framework/embarkjs-plasma.git"
|
|
},
|
|
"keywords": [
|
|
"Embark",
|
|
"OmiseGO",
|
|
"blockchain"
|
|
],
|
|
"author": "eric.mastro@gmail.com",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/embark-framework/embarkjs-plasma/issues"
|
|
},
|
|
"homepage": "https://github.com/embark-framework/embarkjs-plasma#readme",
|
|
"dependencies": {
|
|
"@babel/plugin-proposal-optional-chaining": "7.2.0",
|
|
"@babel/runtime-corejs2": "7.3.1",
|
|
"@omisego/omg-js": "2.0.0-v0.2",
|
|
"@omisego/omg-js-childchain": "2.0.0-v0.2",
|
|
"@omisego/omg-js-rootchain": "2.0.0-v0.2",
|
|
"@omisego/omg-js-util": "2.0.0-v0.2",
|
|
"human-standard-token-abi": "2.0.0",
|
|
"web3": "1.0.0-beta.55"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "7.2.3",
|
|
"@babel/core": "7.2.2",
|
|
"@babel/plugin-proposal-class-properties": "7.4.4",
|
|
"@babel/plugin-proposal-decorators": "7.4.4",
|
|
"@babel/plugin-syntax-dynamic-import": "7.2.0",
|
|
"@babel/plugin-transform-runtime": "7.4.0",
|
|
"@babel/preset-env": "7.4.1",
|
|
"babel-plugin-dynamic-import-node": "2.2.0",
|
|
"babel-plugin-macros": "2.6.0",
|
|
"cross-env": "5.2.0",
|
|
"eslint": "4.19.1",
|
|
"lodash.clonedeep": "4.5.0",
|
|
"npm-run-all": "4.1.5",
|
|
"rimraf": "2.6.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.12.0 <12.0.0",
|
|
"npm": ">=6.4.1",
|
|
"yarn": ">=1.12.3"
|
|
}
|
|
} |