-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.01 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "super-i18n",
"version": "3.0.0-alpha.12",
"description": "i18n functions & utilities for Super Project",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/websage-team/super-i18n"
},
"author": "[email protected]",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/websage-team/super-i18n/issues"
},
"homepage": "https://github.com/websage-team/super-i18n",
"dependencies": {
"js-cookie": "^2.2.0"
},
"peerDependencies": {
"super-project": ">=3"
},
"devDependencies": {
"eslint": "^4.19.1"
},
"eslintConfig": {
"extends": "eslint:recommended",
"plugins": [],
"env": {
"browser": true,
"node": true,
"commonjs": true,
"amd": true,
"es6": true,
"mocha": true,
"jquery": true
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"ecmaFeatures": {
"impliedStrict": true
}
},
"globals": {
"__DEV__": false,
"__CLIENT__": false,
"__SERVER__": false,
"__REDUX_STATE__": false
},
"settings": {
"import/ignore": [
"node_modules"
]
},
"rules": {
"no-const-assign": 1,
"no-extra-semi": 2,
"semi": 0,
"no-case-declarations": 2,
"no-console": 0,
"no-fallthrough": 0,
"no-empty": 0,
"no-empty-pattern": 2,
"no-mixed-spaces-and-tabs": 0,
"no-octal": 2,
"no-redeclare": [
2,
{
"builtinGlobals": true
}
],
"no-self-assign": 2,
"no-this-before-super": 1,
"no-undef": 1,
"no-unreachable": 1,
"no-unused-vars": 1,
"no-use-before-define": 0,
"constructor-super": 1,
"curly": 0,
"eqeqeq": 0,
"func-names": 0,
"valid-typeof": 1,
"indent": [
"error",
4,
{
"SwitchCase": 1
}
]
}
}
}