freeCodeCamp/curriculum/package.json

90 lines
2.5 KiB
JSON
Raw Normal View History

{
"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/freeCodeCamp#readme",
"repository": {
"type": "git",
"url": "https://github.com/freeCodeCamp/freeCodeCamp.git"
},
"bugs": {
"url": "https://github.com/freeCodeCamp/freeCodeCamp/issues"
},
2018-10-05 11:20:51 +00:00
"version": "0.0.0-next.4",
"main": "lib.js",
"scripts": {
2018-10-05 11:20:51 +00:00
"develop": "gulp",
"lint": "gulp lint",
"semantic-release": "semantic-release",
"pretest": "cd ../client && npm run build:workers",
2019-02-16 08:37:36 +00:00
"test": "mocha --delay --reporter progress --bail"
},
"dependencies": {
"invariant": "^2.2.4"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^7.0.1",
"@commitlint/travis-cli": "^8.3.5",
2019-07-19 13:14:12 +00:00
"@freecodecamp/challenge-md-parser": "^2.0.0",
2018-06-13 16:21:18 +00:00
"@semantic-release/changelog": "^2.0.2",
"@semantic-release/git": "^5.0.0",
2018-06-08 13:01:07 +00:00
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dynamic-import-node": "^2.3.0",
2018-06-21 12:21:32 +00:00
"babel-plugin-lodash": "^3.3.4",
2018-06-08 13:01:07 +00:00
"babel-plugin-transform-imports": "^1.4.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
2018-06-08 13:01:07 +00:00
"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",
2018-10-25 00:34:47 +00:00
"chai": "4.2.0",
"fs-extra": "^6.0.1",
"gulp": "^4.0.2",
"joi": "^13.3.0",
"joi-objectid": "^2.0.0",
"jquery": "^3.4.1",
"js-yaml": "^3.12.0",
"jsdom": "^12.2.0",
"lint-staged": "^7.2.0",
"live-server": "^1.2.1",
"lodash": "^4.17.15",
2018-10-25 00:34:47 +00:00
"mocha": "5.2.0",
"puppeteer": "^1.19.0",
"readdirp-walk": "^1.7.0",
2018-06-08 13:01:07 +00:00
"rx": "^4.1.0",
"semantic-release": "^15.13.24",
"validator": "^10.4.0"
},
"keywords": [
"challenges",
"curriculum",
"freecodecamp",
"interview",
"javascript",
"json"
],
"publishConfig": {
"access": "public"
},
2018-06-13 16:21:18 +00:00
"release": {
"branch": "master",
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
}
}