-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.4 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
{
"name": "js-intro-workshop",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test:lint": "eslint .",
"test:exercises": "TEST_SOLUTIONS=true npm run ex -- */**/exercises/*.test.js",
"test": "npm run test:lint && npm run test:exercises",
"ex": "tap --no-coverage --jobs=1 --reporter=spec --node-arg=\"--loader=esmock\" --node-arg=\"--no-warnings\"",
"prepare": "husky install",
"render-readmes": "node scripts/renderReadmes.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fourTheorem/js-intro-workshop.git"
},
"keywords": [],
"author": "Guilherme della Rosa, Luciano Mammino",
"license": "MIT",
"bugs": {
"url": "https://github.com/fourTheorem/js-intro-workshop/issues"
},
"homepage": "https://github.com/fourTheorem/js-intro-workshop#readme",
"devDependencies": {
"@types/sinon": "^10.0.12",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint": "^8.18.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.3",
"eslint-plugin-promise": "^6.0.0",
"esmock": "^1.9.4",
"glob": "^8.0.3",
"husky": "^8.0.1",
"mustache": "^4.2.0",
"sinon": "^14.0.0",
"tap": "^16.3.0",
"typescript": "^4.7.4"
},
"dependencies": {
"youtubei.js": "^1.4.3"
}
}