-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1010 Bytes
/
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
{
"name": "hackerrank",
"version": "1.0.0",
"description": "My solutions to HackerRank problems",
"author": "André Gomes",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/andregs/hackerrank.git"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 6
},
"env": {
"node": true,
"es6": true
},
"extends": "eslint:recommended",
"rules": {
"no-cond-assign": "off",
"eqeqeq": "error",
"no-throw-literal": "error",
"no-warning-comments": ["warn", {"location": "anywhere"}],
"no-with": "error",
"strict": "error",
"no-shadow-restricted-names": "error",
"comma-dangle": ["warn", "only-multiline"],
"no-mixed-spaces-and-tabs": "warn",
"no-trailing-spaces": "warn",
"semi": "error",
"prefer-rest-params": "error",
"prefer-spread": "warn"
}
},
"dependencies": {
"bignumber.js": "2.1.2",
"lodash": "3.10.1"
}
}