@asgardex/asgardex-theme
Version:
ASGARDEX global theme configuration
72 lines • 1.71 kB
JSON
{
"name": "@asgardex/asgardex-theme",
"version": "0.1.3",
"description": "ASGARDEX global theme configuration",
"keywords": [
"THORChain",
"ASGARDEX",
"THEME"
],
"author": "Asgardex",
"homepage": "https://github.com/asgardex/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@github.com:asgardex/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.10.0",
"@typescript-eslint/parser": "^3.10.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.8.8",
"rollup": "^2.79.1",
"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.4",
"rollup-plugin-typescript2": "^0.27.3",
"ts-jest": "^26.5.6",
"tslib": "^2.6.2",
"typescript": "^4.9.4"
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"yarn lint",
"git add"
]
}
}