forked from js-tasks-ru/jsbasic-20220419-2_ivanhlop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.08 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
{
"name": "tasks-jsbasic",
"version": "1.0.0",
"description": "Repo with tasks for JS Basic",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run karma",
"karma": "karma start karma.conf.js",
"lint": "eslint \"./*-module/**/*.js\"",
"lint:fix": "eslint --fix \"./*-module/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/javascript-info/tasks-js-dom-interfaces.git"
},
"author": "Artsiom Mezin",
"license": "ISC",
"bugs": {
"url": "https://github.com/javascript-info/tasks-jsbasic/issues"
},
"homepage": "https://github.com/javascript-info/tasks-jsbasic#readme",
"devDependencies": {
"babel-eslint": "^10.0.3",
"babel-loader": "^8.1.0",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.18.2",
"jasmine": "^3.3.1",
"jasmine-core": "^3.3.0",
"karma": "^6.3.4",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^2.0.1",
"karma-mocha-reporter": "git+https://github.com/javascriptru/karma-mocha-reporter.git",
"karma-viewport": "^1.0.6"
}
}