-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.54 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "coding-challenges",
"description": "Coding challenges practice questions",
"version": "1.0.0",
"homepage": "https://github.com/suddi/coding-challenges",
"author": {
"name": "Sudharshan Ravindran",
"email": "mail@suddi.io",
"url": "https://suddi.io"
},
"repository": {
"type": "git",
"url": "https://github.com/suddi/coding-challenges"
},
"bugs": {
"url": "https://github.com/suddi/coding-challenges/issues"
},
"files": [
"javascript"
],
"license": "MIT",
"keywords": [
"coding-challenges"
],
"engines": {
"node": ">= 12.0.0",
"npm": ">= 6.0.0"
},
"scripts": {
"coverage": "nyc mocha",
"lint": "eslint .",
"security-check": "npm audit --audit-level high || true",
"test": "npm run test:python && npm run test:node && npm run test:c++ && npm run test:go",
"test:node": "npm run security-check && npm run lint && npm run coverage",
"test:python": "python setup.py lint && python setup.py test",
"test:c++": "node cpp_runner.js",
"test:go": "go test ./... --cover"
},
"dependencies": {},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-suddi": "^4.0.0",
"husky": "^4.0.2",
"mocha": "^7.1.1",
"nyc": "^15.0.0"
},
"eslintConfig": {
"extends": "suddi/backend",
"rules": {
"valid-jsdoc": "off",
"complexity": "off",
"no-unused-vars": "off",
"no-multi-spaces": "off",
"prefer-const": "off"
}
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
}
}