-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1006 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "intl-listformat",
"version": "0.1.0",
"description": "Intl.ListFormat polyfill",
"keywords": [
"unicode",
"cldr",
"i18n",
"internationalization"
],
"author": "Zibi Braniecki <zbraniecki@mozilla.com>",
"license": "ISC",
"homepage": "https://github.com/zbraniecki/IntlListFormat",
"repository": {
"type": "git",
"url": "https://github.com/zbraniecki/IntlListFormat.git"
},
"bugs": {
"url": "https://github.com/zbraniecki/IntlListFormat/issues"
},
"files": [
"polyfill.*"
],
"main": "polyfill",
"devDependencies": {
},
"eslintConfig": {
"ecmaFeatures": {
"modules": true
},
"env": {
"es6": true,
"browser": true,
"node": true
},
"rules": {
"curly": [
2,
"multi-line"
],
"eqeqeq": [
1,
"smart"
],
"quotes": [
1,
"single",
"avoid-escape"
]
}
},
"scripts": {
"test": "make test"
}
}