85 lines
2.7 KiB
JSON
85 lines
2.7 KiB
JSON
{
|
|
"name": "@solana/web3.js",
|
|
"version": "0.0.4",
|
|
"description": "Solana Javascript API",
|
|
"keywords": [
|
|
"api",
|
|
"blockchain"
|
|
],
|
|
"license": "MIT",
|
|
"author": "Solana Labs, Inc",
|
|
"homepage": "https://solana.com/",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "http://github.com/solana-labs/solana-web3.js.git"
|
|
},
|
|
"bugs": {
|
|
"url": "http://github.com/solana-labs/solana-web3.js.git/issues"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"main": "lib/index.cjs.js",
|
|
"module": "lib/index.esm.js",
|
|
"scripts": {
|
|
"clean": "rimraf ./coverage ./lib",
|
|
"dev": "cross-env NODE_ENV=development rollup -c",
|
|
"build": "cross-env NODE_ENV=production rollup -c",
|
|
"doc": "esdoc",
|
|
"doc:watch": "watch 'npm run doc' . --wait=1 --ignoreDirectoryPattern=/doc/",
|
|
"test": "cross-env NODE_ENV=test jest",
|
|
"test:watch": "cross-env NODE_ENV=test jest --watch",
|
|
"test:cover": "cross-env NODE_ENV=test jest --coverage",
|
|
"codecov": "npm run test:cover && cat ./coverage/lcov.info | codecov",
|
|
"flow": "flow-typed install jest@22 && flow",
|
|
"flow:watch": "watch 'flow' . --wait=1 --ignoreDirectoryPattern=/doc/",
|
|
"lint": "eslint src test examples",
|
|
"lint:fix": "npm run lint --fix",
|
|
"lint:watch": "watch 'npm run lint:fix' . --wait=1 --ignoreDirectoryPattern=/doc/",
|
|
"prepublish": "npm run clean && npm run test && npm run flow && npm run lint && npm run doc && npm run build"
|
|
},
|
|
"dependencies": {
|
|
"babel-runtime": "^6.26.0",
|
|
"bs58": "^4.0.1",
|
|
"jayson": "^2.0.6",
|
|
"node-fetch": "^2.2.0",
|
|
"superstruct": "^0.5.4",
|
|
"tweetnacl": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"babel-core": "6.26.0",
|
|
"babel-eslint": "8.2.3",
|
|
"babel-plugin-module-resolver": "3.1.1",
|
|
"babel-plugin-transform-runtime": "^6.23.0",
|
|
"babel-preset-env": "1.6.1",
|
|
"babel-preset-flow": "6.23.0",
|
|
"babel-preset-stage-0": "6.24.1",
|
|
"codecov": "^3.0.4",
|
|
"cross-env": "5.1.4",
|
|
"enzyme": "3.3.0",
|
|
"esdoc": "^1.1.0",
|
|
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
|
|
"esdoc-flow-type-plugin": "^1.1.0",
|
|
"esdoc-importpath-plugin": "^1.0.2",
|
|
"esdoc-standard-plugin": "^1.0.0",
|
|
"eslint": "4.19.1",
|
|
"eslint-plugin-import": "2.11.0",
|
|
"eslint-plugin-jest": "^21.21.0",
|
|
"flow-bin": "0.70.0",
|
|
"flow-typed": "2.4.0",
|
|
"fs-file-tree": "1.0.6",
|
|
"jest": "22.4.3",
|
|
"rimraf": "2.6.2",
|
|
"rollup": "0.58.1",
|
|
"rollup-plugin-babel": "3.0.3",
|
|
"rollup-plugin-commonjs": "9.1.0",
|
|
"rollup-plugin-json": "^3.0.0",
|
|
"rollup-plugin-node-builtins": "^2.1.2",
|
|
"rollup-plugin-node-globals": "^1.2.1",
|
|
"rollup-plugin-node-resolve": "3.3.0",
|
|
"rollup-plugin-replace": "2.0.0",
|
|
"rollup-plugin-uglify": "3.0.0",
|
|
"watch": "^1.0.2"
|
|
}
|
|
}
|