forked from lmammino/iteration-protocols-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.26 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
{
"name": "iteration-protocols-workshop",
"version": "1.0.0",
"description": "A workshop about JavaScript iteration protocols: iterator, iterable, async iterator, async iterable",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=16.14",
"npm": ">=8.3"
},
"engineStrict": true,
"scripts": {
"test:lint": "eslint .",
"test:unit": "TEST_SOLUTIONS=true tap --no-coverage --jobs=1 --reporter=spec */**/exercises/*.test.js",
"test": "npm run test:lint && npm run test:unit",
"ex": "tap --no-coverage --jobs=1 --reporter=spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lmammino/iteration-protocols-workshop.git"
},
"keywords": [],
"author": "Luciano Mammino",
"license": "MIT",
"bugs": {
"url": "https://github.com/lmammino/iteration-protocols-workshop/issues"
},
"homepage": "https://github.com/lmammino/iteration-protocols-workshop#readme",
"devDependencies": {
"axios": "^0.27.2",
"eslint": "^8.14.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"nock": "^13.2.4",
"node-fetch": "^3.2.4",
"tap": "^16.1.0"
},
"dependencies": {
"glob": "^8.0.3"
}
}