-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.83 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.83 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "expert-system",
"version": "1.0.0",
"description": "Expert System",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/VBrazhnik/Expert-System.git"
},
"author": "vbrazhni <vbrazhni@student.unit.ua>",
"homepage": "https://github.com/VBrazhnik/Expert-System#readme",
"main": "./src/index.js",
"engines": {
"node": "12",
"npm": ">= 5"
},
"scripts": {
"eslint": "eslint ./ --ignore-path .gitignore",
"prettier": "prettier --write \"./**/*.{js,json,md,yml}\" --ignore-path .gitignore",
"prettier:check": "prettier --check \"./**/*.{js,json,md,yml}\" --ignore-path .gitignore",
"test": "mocha \"./test/**/*.spec.js\"",
"test:coverage": "nyc npm test",
"test:coverage:summary": "nyc --reporter=text-summary npm test",
"test:style": "npm run eslint && npm run prettier:check"
},
"dependencies": {
"chalk": "^4.1.0",
"js-combinatorics": "^0.6.1",
"lodash": "^4.17.19",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/yargs": "^15.0.5",
"chai": "^4.2.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"prettier-plugin-package": "^1.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --quiet",
"*.{js,json,md}": "prettier --check"
},
"mocha": {
"exit": true
},
"nyc": {
"all": true,
"include": [
"src/**/*.js"
],
"exclude": [
"test/**/*.spec.js"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "avoid"
}
}