mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-22 09:01:46 -05:00
# [3.0.0](https://github.com/freeCodeCamp/curriculum/compare/v2.0.0...v3.0.0) (2018-06-29) ### Bug Fixes * **challenge:** Fixed the typo for automatically ([#48](https://github.com/freeCodeCamp/curriculum/issues/48)) ([dd046d6](https://github.com/freeCodeCamp/curriculum/commit/dd046d6)) * **challenge:** Updated tests to avoid confusion ([#57](https://github.com/freeCodeCamp/curriculum/issues/57)) ([7105507](https://github.com/freeCodeCamp/curriculum/commit/7105507)) * **challenges:** change test for template literals challenge ([#37](https://github.com/freeCodeCamp/curriculum/issues/37)) ([4b1c5eb](https://github.com/freeCodeCamp/curriculum/commit/4b1c5eb)) * **challenges:** cherry pick pr 17664 & 17672 from main repo ([#52](https://github.com/freeCodeCamp/curriculum/issues/52)) ([2375d0c](https://github.com/freeCodeCamp/curriculum/commit/2375d0c)) * **challenges:** fixed telephone number validator project ([#53](https://github.com/freeCodeCamp/curriculum/issues/53)) ([2b034e2](https://github.com/freeCodeCamp/curriculum/commit/2b034e2)), closes [#47](https://github.com/freeCodeCamp/curriculum/issues/47) * **challenges:** fixed typo in css-grid.json ([#46](https://github.com/freeCodeCamp/curriculum/issues/46)) ([e74192e](https://github.com/freeCodeCamp/curriculum/commit/e74192e)) * **challenges:** grammar fix in css-grid auto-fit challenge ([#60](https://github.com/freeCodeCamp/curriculum/issues/60)) ([a6a0266](https://github.com/freeCodeCamp/curriculum/commit/a6a0266)) * **challenges:** Typo errors ([#39](https://github.com/freeCodeCamp/curriculum/issues/39)) ([0c0702d](https://github.com/freeCodeCamp/curriculum/commit/0c0702d)) * **challenges:** update regular expression that fails ([#56](https://github.com/freeCodeCamp/curriculum/issues/56)) ([9fa5907](https://github.com/freeCodeCamp/curriculum/commit/9fa5907)), closes [#55](https://github.com/freeCodeCamp/curriculum/issues/55) ### BREAKING CHANGES * **challenges:** None
119 lines
3.2 KiB
JSON
119 lines
3.2 KiB
JSON
{
|
|
"name": "@freecodecamp/curriculum",
|
|
"description": "freeCodeCamp's curriculum seed files",
|
|
"license": "(BSD-3-Clause AND CC-BY-SA-4.0)",
|
|
"author": "freeCodeCamp <team@freecodecamp.org>",
|
|
"homepage": "https://github.com/freeCodeCamp/curriculum#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/freeCodeCamp/curriculum.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/freeCodeCamp/curriculum/issues"
|
|
},
|
|
"version": "3.0.0",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "npm run build:js && npm run build:json",
|
|
"build:js": "gulp babel",
|
|
"build:json": "gulp json:minify",
|
|
"precommit": "lint-staged",
|
|
"commit": "git-cz",
|
|
"commitmsg": "commitlint -e",
|
|
"format": "prettier --write es5 './**/*.{js,json}' && npm run lint",
|
|
"lint": "eslint ./**/*.js --fix",
|
|
"prepack": "npm run build",
|
|
"repack": "babel-node ./repack.js",
|
|
"semantic-release": "semantic-release",
|
|
"test": "babel-node ./test-challenges.js | tap-spec",
|
|
"unpack": "babel-node ./unpack.js"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "node_modules/cz-customizable"
|
|
},
|
|
"cz-customizable": {
|
|
"config": "commitizen.config.js"
|
|
}
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^7.0.0",
|
|
"@commitlint/config-conventional": "^7.0.1",
|
|
"@commitlint/travis-cli": "^7.0.0",
|
|
"@semantic-release/changelog": "^2.0.2",
|
|
"@semantic-release/git": "^5.0.0",
|
|
"babel-cli": "^6.3.17",
|
|
"babel-plugin-add-module-exports": "^0.2.1",
|
|
"babel-plugin-lodash": "^3.3.4",
|
|
"babel-plugin-transform-imports": "^1.4.1",
|
|
"babel-plugin-transform-runtime": "^6.23.0",
|
|
"babel-preset-env": "^1.7.0",
|
|
"babel-preset-react": "^6.24.1",
|
|
"babel-preset-stage-0": "^6.3.13",
|
|
"babel-preset-stage-3": "^6.24.1",
|
|
"babel-standalone": "^6.26.0",
|
|
"browserify": "^16.2.2",
|
|
"commitizen": "^2.9.6",
|
|
"cz-customizable": "^5.2.0",
|
|
"eslint": "^4.19.1",
|
|
"eslint-config-freecodecamp": "^1.1.1",
|
|
"eslint-plugin-import": "^2.11.0",
|
|
"eslint-plugin-prefer-object-spread": "^1.2.1",
|
|
"eslint-plugin-react": "^7.7.0",
|
|
"fs-extra": "^6.0.1",
|
|
"gulp": "^3.9.1",
|
|
"gulp-babel": "^7.0.1",
|
|
"gulp-json-minify": "^1.2.2",
|
|
"gulp-rename": "^1.3.0",
|
|
"gulp-util": "^3.0.8",
|
|
"husky": "^0.14.3",
|
|
"joi": "^13.3.0",
|
|
"joi-objectid": "^2.0.0",
|
|
"jquery": "^3.3.1",
|
|
"lint-staged": "^7.2.0",
|
|
"lodash": "^4.17.10",
|
|
"prettier": "^1.13.5",
|
|
"prettier-package-json": "^1.6.0",
|
|
"rx": "^4.1.0",
|
|
"semantic-release": "^15.6.0",
|
|
"tap-spec": "^5.0.0",
|
|
"tape": "^4.9.1",
|
|
"validator": "^10.4.0"
|
|
},
|
|
"keywords": [
|
|
"challenges",
|
|
"curriculum",
|
|
"freecodecamp",
|
|
"interview",
|
|
"javascript",
|
|
"json"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,json,css}": [
|
|
"prettier --write",
|
|
"git add"
|
|
],
|
|
"package.json": [
|
|
"prettier-package-json --write",
|
|
"git add"
|
|
]
|
|
},
|
|
"release": {
|
|
"branch": "master",
|
|
"verifyConditions": [
|
|
"@semantic-release/changelog",
|
|
"@semantic-release/npm",
|
|
"@semantic-release/git"
|
|
],
|
|
"prepare": [
|
|
"@semantic-release/changelog",
|
|
"@semantic-release/npm",
|
|
"@semantic-release/git"
|
|
]
|
|
}
|
|
}
|