-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.11 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": "euler",
"version": "1.0.0",
"description": "Project Euler - ES6",
"main": "index.js",
"author": {
"name": "vanita5",
"email": "mail@vanit.as"
},
"license": "MIT",
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-preset-latest": "^6.16.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-xo": "^0.14.0"
},
"babel": {
"presets": [
"latest"
]
},
"xo": {
"space": 4,
"esnext": true,
"envs": [
"es6"
],
"parser": "babel-eslint",
"rules": {
"curly": [
"error",
"multi-line"
],
"object-curly-spacing": [
"error",
"always"
],
"no-div-regex": "warn",
"operator-linebreak": [
"error",
"after",
{
"overrides": {
"?": "ignore",
":": "ignore"
}
}
],
"import/no-unresolved": [
"off"
],
"unicorn/no-abusive-eslint-disable": [
"off"
]
}
},
"dependencies": {
"bigdecimal": "^0.6.1",
"bignum": "^0.12.5",
"gulp-clean": "^0.3.2"
}
}