forked from Laboratoria/curriculum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.43 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
{
"name": "bootcamp",
"version": "2.12.0",
"description": "Proyectos y tópicos del Bootcamp de @Laboratoria",
"scripts": {
"mdlint": "mdlint .",
"eslint": "eslint topics/",
"pretest": "npm run mdlint && npm run eslint && npm run validate",
"test": "mocha './topics/!(node_modules)/**/*.spec.js' --verbose",
"validate": "./scripts/build.js --validate",
"build": "./scripts/build.js",
"deploy": "./scripts/deploy.js",
"changelog": "git log $(git describe --tags --abbrev=0)..HEAD --oneline --format=\"* %h %s (%an)\""
},
"repository": "Laboratoria/bootcamp",
"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/bootcamp/issues"
},
"devDependencies": {
"@laboratoria/curriculum-parser": "^2.7.0",
"@laboratoria/mdlint": "^1.2.0",
"chai": "^4.2.0",
"eslint": "^7.12.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"gulp": "^4.0.2",
"gulp-shell": "^0.8.0",
"jdi": "^1.1.3",
"mkdirp": "^1.0.4",
"mocha": "^8.2.1",
"porch": "^1.1.4",
"sinon": "^9.2.1"
},
"engines": {
"node": ">=10.x"
}
}