-
Notifications
You must be signed in to change notification settings - Fork 462
/
package.json
52 lines (52 loc) · 1.75 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "curriculum",
"version": "9.5.0",
"description": "Proyectos y tópicos del curriculum del Bootcamp de @Laboratoria",
"repository": "Laboratoria/curriculum",
"keywords": [
"javascript",
"laboratoria",
"bootcamp",
"curriculum",
"fullstack",
"ux"
],
"author": "Laboratoria <[email protected]> (http://laboratoria.la/)",
"license": "CC-BY-SA-4.0",
"bugs": {
"url": "https://github.com/Laboratoria/curriculum/issues"
},
"scripts": {
"mdlint": "mdlint .",
"eslint": "eslint topics/",
"test:topics": "mocha './topics/!(node_modules)/**/*.spec.js' --verbose",
"test:scripts": "mocha './scripts/test/*.spec.mjs' --verbose",
"pretest": "npm run mdlint && npm run eslint && npm run validate",
"test": "npm run test:topics && npm run test:scripts",
"validate": "node ./scripts/build.mjs --validate",
"build": "node ./scripts/build.mjs",
"changelog": "git log $(git describe --tags --abbrev=0)..HEAD --oneline --format=\"* %h %s (%an)\"",
"create-cohort-project": "node ./scripts/create-cohort-project.mjs",
"link-parser": "rm -rf node_modules/@laboratoria/curriculum-parser && ln -s ../../../curriculum-parser node_modules/@laboratoria/"
},
"devDependencies": {
"@laboratoria/curriculum-parser": "^6.1.0--alpha.0",
"@laboratoria/mdlint": "^1.2.3",
"@laboratoria/sdk-js": "^8.1.0",
"@octokit/rest": "^20.1.1",
"chai": "^4.4.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"jsdom": "^24.1.3",
"minimist": "^1.2.8",
"mkdirp": "^3.0.1",
"mocha": "^10.4.0",
"porch": "^2.0.1",
"sinon": "^17.0.1"
},
"engines": {
"node": ">=18.x"
}
}