@thorchain/asgardex-theme
Version:
ASGARDEX global theme configuration
73 lines (72 loc) • 1.74 kB
JSON
{
"name": "@thorchain/asgardex-theme",
"version": "0.1.1",
"description": "ASGARDEX global theme configuration",
"keywords": [
"THORChain",
"ASGARDEX",
"THEME"
],
"author": "THORChain",
"homepage": "https://gitlab.com/thorchain/asgardex-common/asgardex-theme",
"license": "MIT",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"typings": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git@gitlab.com:thorchain/asgardex-common/asgardex-theme.git"
},
"scripts": {
"clean": "rimraf lib/**",
"build": "rollup -c",
"test": "echo 'no test specified'",
"lint": "eslint \"{src,__tests__}/**/*.ts\" --fix",
"prepublishOnly": "yarn build"
},
"dependencies": {
"polished": "^3.6.3"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.6",
"prettier": "^2.0.5",
"rollup": "^2.10.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-typescript2": "^0.27.1",
"ts-jest": "^26.0.0",
"tslib": "^2.0.0",
"typescript": "^3.9.3"
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"yarn lint",
"git add"
]
}
}