mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00:00
72 lines
1.7 KiB
JSON
72 lines
1.7 KiB
JSON
{
|
|
"author": "Steve Kellock <steve@kellock.ca>",
|
|
"ava": {
|
|
"require": [
|
|
"babel-register"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"ramda": "^0.24.1"
|
|
},
|
|
"description": "Utilities for Ramda.",
|
|
"devDependencies": {
|
|
"@semantic-release/git": "^7.0.5",
|
|
"ava": "^0.21.0",
|
|
"babel-core": "^6.25.0",
|
|
"babel-eslint": "^7.2.3",
|
|
"babel-preset-es2015": "^6.13.2",
|
|
"babel-preset-es2015-rollup": "^3.0.0",
|
|
"np": "^2.16.0",
|
|
"nyc": "^11.1.0",
|
|
"rollup": "^0.47.2",
|
|
"rollup-plugin-babel": "^3.0.1",
|
|
"rollup-plugin-filesize": "^1.4.2",
|
|
"rollup-plugin-ramda": "^1.0.5",
|
|
"rollup-plugin-uglify": "^2.0.1",
|
|
"semantic-release": "^15.12.5",
|
|
"standard": "^10.0.3"
|
|
},
|
|
"files": [
|
|
"dist/ramdasauce.js"
|
|
],
|
|
"keywords": [
|
|
"ramda",
|
|
"sauce",
|
|
"utilities"
|
|
],
|
|
"license": "MIT",
|
|
"main": "./dist/ramdasauce.js",
|
|
"name": "ramdasauce",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/skellock/ramdasauce.git"
|
|
},
|
|
"scripts": {
|
|
"build": "rm -rf dist && BABEL_ENV=production rollup -c",
|
|
"coverage": "nyc ava",
|
|
"lint": "standard lib/* test/* rollup.config.js",
|
|
"test": "ava",
|
|
"ci:publish": "yarn semantic-release",
|
|
"semantic-release": "semantic-release"
|
|
},
|
|
"standard": {
|
|
"parser": "babel-eslint"
|
|
},
|
|
"version": "2.1.3",
|
|
"release": {
|
|
"plugins": [
|
|
"@semantic-release/commit-analyzer",
|
|
"@semantic-release/release-notes-generator",
|
|
"@semantic-release/npm",
|
|
"@semantic-release/github",
|
|
[
|
|
"@semantic-release/git",
|
|
{
|
|
"assets": "package.json",
|
|
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
|
|
}
|
|
]
|
|
]
|
|
}
|
|
}
|