105 lines
3.3 KiB
JSON
105 lines
3.3 KiB
JSON
{
|
|
"name": "@edx/frontend-component-footer",
|
|
"version": "1.0.0-semantically-released",
|
|
"description": "Site footer component for use when building edX frontend applications",
|
|
"main": "dist/main.js",
|
|
"module": "dist/main.js",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"build": "NODE_ENV=production BABEL_ENV=production webpack --config=config/webpack.prod.config.js",
|
|
"gc": "commit",
|
|
"commitmsg": "commitlint -e $GIT_PARAMS",
|
|
"coveralls": "cat ./coverage/lcov.info | coveralls",
|
|
"lint": "eslint --ext .js --ext .jsx .",
|
|
"precommit": "npm run lint",
|
|
"prepublishOnly": "npm run build",
|
|
"semantic-release": "semantic-release",
|
|
"start": "NODE_ENV=development BABEL_ENV=development node_modules/.bin/webpack-dev-server --config=config/webpack.dev.config.js --progress",
|
|
"test": "jest --coverage",
|
|
"snapshot": "jest --updateSnapshot",
|
|
"travis-deploy-once": "travis-deploy-once",
|
|
"watch": "watch 'npm run build' ./src"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/edx/frontend-component-footer.git"
|
|
},
|
|
"author": "edX",
|
|
"license": "AGPL-3.0",
|
|
"bugs": {
|
|
"url": "https://github.com/edx/frontend-component-footer/issues"
|
|
},
|
|
"homepage": "https://github.com/edx/frontend-component-footer#readme",
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^7.1.2",
|
|
"@commitlint/config-angular": "^6.0.2",
|
|
"@commitlint/prompt": "^6.0.2",
|
|
"@commitlint/prompt-cli": "^6.0.2",
|
|
"babel-cli": "^6.26.0",
|
|
"babel-core": "^6.26.3",
|
|
"babel-loader": "^7.1.5",
|
|
"babel-plugin-rewire": "^1.2.0",
|
|
"babel-plugin-transform-object-rest-spread": "^6.26.0",
|
|
"babel-preset-env": "^1.7.0",
|
|
"babel-preset-react": "^6.24.1",
|
|
"clean-webpack-plugin": "^0.1.19",
|
|
"coveralls": "^3.0.0",
|
|
"css-loader": "^0.28.9",
|
|
"@edx/paragon": "^3.8.0",
|
|
"enzyme": "^3.3.0",
|
|
"enzyme-adapter-react-16": "^1.1.1",
|
|
"eslint": "^5.2.0",
|
|
"eslint-config-edx": "^4.0.4",
|
|
"eslint-plugin-jsx-a11y": "^6.1.2",
|
|
"file-loader": "^1.1.9",
|
|
"html-webpack-plugin": "^3.2.0",
|
|
"image-webpack-loader": "^4.2.0",
|
|
"husky": "^0.14.3",
|
|
"jest": "23.6.0",
|
|
"node-sass": "^4.7.2",
|
|
"prop-types": "^15.5.10",
|
|
"react": "^16.4.2",
|
|
"react-dom": "^16.2.0",
|
|
"react-dev-utils": "^5.0.0",
|
|
"react-test-renderer": "^16.6.0",
|
|
"sass-loader": "^6.0.6",
|
|
"semantic-release": "^15.1.7",
|
|
"source-map-loader": "^0.2.1",
|
|
"style-loader": "^0.20.2",
|
|
"travis-deploy-once": "^5.0.0",
|
|
"watch": "^1.0.2",
|
|
"webpack": "^4.19.1",
|
|
"webpack-cli": "^3.1.0",
|
|
"webpack-dev-server": "^3.1.9",
|
|
"webpack-merge": "^4.2.1"
|
|
},
|
|
"peerDependencies": {
|
|
"@edx/paragon": "^3.8.0",
|
|
"clean-webpack-plugin": "^0.1.19",
|
|
"html-webpack-plugin": "^3.2.0",
|
|
"prop-types": "^15.5.10",
|
|
"react": "^16.4.2",
|
|
"react-dom": "^16.2.0",
|
|
"webpack": "^4.19.1",
|
|
"webpack-merge": "^4.2.1"
|
|
},
|
|
"jest": {
|
|
"setupFiles": [
|
|
"./src/tests/setupTest.js"
|
|
],
|
|
"collectCoverageFrom": [
|
|
"src/lib/**/*.{js,jsx}",
|
|
"!src/tests/setupTest.js",
|
|
"!src/index.js",
|
|
"!**/node_modules/**",
|
|
"!**/tests/**"
|
|
],
|
|
"moduleNameMapper": {
|
|
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
|
|
"\\.(css|scss)$": "identity-obj-proxy"
|
|
}
|
|
}
|
|
}
|