emmaramirez.me
Version:
emma's personal website
94 lines (93 loc) • 2.75 kB
JSON
{
"name": "emmaramirez.me",
"version": "0.15.0",
"description": "emma's personal website",
"main": "index.js",
"dependencies": {
"@types/jest": "^21.1.9",
"chalk": "^2.3.0",
"conventional-changelog": "^2.0.1",
"copy-webpack-plugin": "^4.5.2",
"coveralls": "^3.0.0",
"css-loader": "^0.28.7",
"fs-extra": "^5.0.0",
"istanbul": "^0.4.5",
"jest": "^22.0.4",
"marked": "^0.3.9",
"node-sass": "^4.9.0",
"path": "^0.12.7",
"prettier": "^1.9.2",
"sass-loader": "^7.0.3",
"style-loader": "^0.19.1",
"ts-jest": "^22.0.0",
"tslint": "^5.8.0",
"tslint-microsoft-contrib": "^5.0.1",
"webpack": "^4.14.0",
"webpack-shell-plugin": "^0.5.0",
"yargs": "^10.0.3"
},
"devDependencies": {
"concurrently": "^3.6.0",
"cz-conventional-changelog": "^2.1.0",
"resolve-url-loader": "^2.3.0",
"semantic-release": "^11.0.2",
"ts-loader": "^4.4.2",
"ts-node": "^4.1.0",
"typescript": "^2.6.2",
"webpack-cli": "^3.0.8"
},
"scripts": {
"build": "webpack",
"create": "ts-node ./scripts/new-post",
"build:watch": "webpack --watch",
"serve": "npx http-server ./docs -c-1",
"test": "jest --verbose --coverage",
"lint": "tslint -c tsconfig.json",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"format": "prettier \"*/**/*.ts\" --parser 'typescript' --single-quote --ignore-path ./.prettierignore --write",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"prestart": "rm -rf ./docs && mkdir ./docs && mkdir ./docs/posts && mkdir ./docs/tags",
"start": "concurrently \"npm run build:watch\" \"npm run serve\""
},
"repository": {
"type": "git",
"url": "https://github.com/EmmaRamirez/emmaramirez.me.git"
},
"keywords": [
"website",
"emma"
],
"author": "Emma Ramirez <ramirez.emma.g@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/EmmaRamirez/emmaramirez.me/issues"
},
"homepage": "https://github.com/EmmaRamirez/emmaramirez.me#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleNameMapper": {
"^.+\\.(css|styl|sass|scss|jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js"
},
"modulePaths": [
"/src"
],
"moduleDirectories": [
"node_modules",
"src"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
]
},
"private": false
}