freeCodeCamp/curriculum/package.json

111 lines
3.1 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",
"format": "prettier --write es5 './**/*.{js,json}' && npm run lint",
"lint": "eslint ./**/*.js --fix",
"repack": "babel-node ./repack.js",
"semantic-release": "semantic-release",
"pretest": "cd ../client && npm run build:workers",
"test": "mocha --delay --reporter progress --bail",
"unpack": "babel-node ./unpack.js"
},
"dependencies": {
"invariant": "^2.2.4"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/register": "^7.0.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@commitlint/travis-cli": "^7.0.0",
"@freecodecamp/challenge-md-parser": "^1.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-cli": "^6.3.17",
"babel-plugin-add-module-exports": "^0.2.1",
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",
"browserify": "^16.2.2",
2018-10-25 00:34:47 +00:00
"chai": "4.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",
2018-10-05 11:20:51 +00:00
"gulp": "^4.0.0",
"joi": "^13.3.0",
"joi-objectid": "^2.0.0",
"jquery": "^3.3.1",
"js-yaml": "^3.12.0",
"jsdom": "^12.2.0",
"lint-staged": "^7.2.0",
"live-server": "^1.2.1",
"lodash": "^4.17.10",
2018-10-25 00:34:47 +00:00
"mocha": "5.2.0",
"prettier": "^1.13.5",
"prettier-package-json": "^1.6.0",
"puppeteer": "1.11.0",
"readdirp-walk": "^1.6.0",
2018-06-08 13:01:07 +00:00
"rx": "^4.1.0",
2018-06-21 12:21:32 +00:00
"semantic-release": "^15.6.0",
"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"
]
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"
]
}
}