serum-js/package.json

71 lines
1.8 KiB
JSON

{
"name": "@project-serum/serum",
"version": "0.1.1",
"description": "Library for interacting with the serum dex",
"license": "MIT",
"repository": "project-serum/serum-js",
"main": "lib/index.js",
"source": "src/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "yarn babel src --out-dir lib",
"clean": "rm -rf lib",
"start": "yarn babel src --out-dir lib --watch",
"prepare": "run-s clean build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint src",
"test:unit": "cross-env CI=1 react-scripts test",
"test:watch": "react-scripts test"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"babel-eslint": "^10.0.3",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-standard": "^4.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "^3.4.1"
},
"files": [
"lib"
],
"jest": {
"transformIgnorePatterns": [
"^.+\\.cjs$"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"@solana/web3.js": "^0.66.3",
"bn.js": "^5.1.2",
"buffer-layout": "^1.2.0"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all",
"maintained node versions"
]
}