solana/web3.js/package.json

87 lines
2.9 KiB
JSON
Raw Normal View History

{
"name": "@solana/web3.js",
2018-09-24 20:28:30 -07:00
"version": "0.0.7-2",
"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"
},
2018-08-22 14:46:09 -07:00
"publishConfig": {
"access": "public"
},
2018-08-22 22:17:06 -07:00
"main": "lib/index.cjs.js",
2018-08-22 21:43:32 -07:00
"module": "lib/index.esm.js",
"scripts": {
"clean": "rimraf ./coverage ./lib",
2018-08-22 21:43:32 -07:00
"dev": "cross-env NODE_ENV=development rollup -c",
"build": "cross-env NODE_ENV=production rollup -c",
2018-08-24 09:05:23 -07:00
"doc": "esdoc; node -p '\"\\nDocumentation coverage: \" + require(\"./doc/coverage.json\").coverage'",
2018-08-22 13:53:13 -07:00
"doc:watch": "watch 'npm run doc' . --wait=1 --ignoreDirectoryPattern=/doc/",
2018-09-26 19:16:17 -07:00
"test": "cross-env NODE_ENV=test jest --useStderr",
"test:live": "cross-env NODE_ENV=test DOITLIVE=1 jest --useStderr",
"test:watch": "cross-env NODE_ENV=test jest --watch --useStderr",
"test:cover": "cross-env NODE_ENV=test jest --coverage --useStderr",
2018-08-23 08:32:44 -07:00
"codecov": "npm run test:cover && cat ./coverage/lcov.info | codecov",
2018-08-23 16:49:03 -07:00
"flow": "flow-typed install jest@22 && flow",
"flow:watch": "watch 'flow' . --wait=1 --ignoreDirectoryPattern=/doc/",
2018-08-24 08:25:36 -07:00
"lint": "eslint .",
2018-08-23 16:49:03 -07:00
"lint:fix": "npm run lint --fix",
"lint:watch": "watch 'npm run lint:fix' . --wait=1 --ignoreDirectoryPattern=/doc/",
2018-09-18 12:46:59 -07:00
"ok": "npm run lint && npm run flow && npm run test && npm run doc",
2018-09-24 20:18:50 -07:00
"prepare": "npm run clean && npm run ok && npm run build"
},
2018-08-23 19:50:09 -07:00
"dependencies": {
"babel-runtime": "^6.26.0",
"bs58": "^4.0.1",
"jayson": "^2.0.6",
"node-fetch": "^2.2.0",
2018-09-25 18:56:43 -07:00
"superstruct": "^0.6.0",
2018-08-23 19:50:09 -07:00
"tweetnacl": "^1.0.0"
},
"devDependencies": {
2018-09-26 08:40:17 -07:00
"babel-core": "6.26.3",
2018-09-25 18:56:43 -07:00
"babel-eslint": "10.0.0",
"babel-plugin-module-resolver": "3.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
2018-09-25 18:56:43 -07:00
"babel-preset-env": "1.7.0",
"babel-preset-flow": "6.23.0",
"babel-preset-stage-0": "6.24.1",
2018-08-23 08:39:34 -07:00
"codecov": "^3.0.4",
2018-09-25 18:56:43 -07:00
"cross-env": "5.2.0",
"enzyme": "3.6.0",
2018-08-22 13:53:13 -07:00
"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",
2018-09-25 18:56:43 -07:00
"eslint": "5.6.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jest": "21.22.1",
"flow-bin": "0.81.0",
"flow-typed": "2.5.1",
"fs-file-tree": "1.0.6",
2018-09-26 08:40:17 -07:00
"jest": "23.6.0",
"rimraf": "2.6.2",
2018-09-25 18:56:43 -07:00
"rollup": "0.66.2",
"rollup-plugin-babel": "3.0.3",
2018-09-25 18:56:43 -07:00
"rollup-plugin-commonjs": "9.1.8",
2018-08-22 21:43:32 -07:00
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.2.1",
2018-09-25 18:56:43 -07:00
"rollup-plugin-node-resolve": "3.4.0",
"rollup-plugin-replace": "2.0.0",
2018-08-22 13:53:13 -07:00
"rollup-plugin-uglify": "3.0.0",
"watch": "^1.0.2"
}
}