forked from sulemanof/js-lectures
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 773 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 773 Bytes
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
{
"name": "js-lectures",
"version": "1.0.0",
"description": "The lecture book for TMS School",
"main": "index.js",
"scripts": {
"test-filter": "mocha ./es6/filter.test",
"test-counter-basic": "mocha ./es6/counter_basic.test",
"test-counter-chainable": "mocha ./es6/counter_chainable.test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sulemanof/js-lectures.git"
},
"author": "Daniil Suleiman",
"license": "ISC",
"bugs": {
"url": "https://github.com/sulemanof/js-lectures/issues"
},
"homepage": "https://github.com/sulemanof/js-lectures#readme",
"devDependencies": {
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^8.3.2"
}
}