-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.09 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
{
"name": "json-locale",
"main": "src/json",
"version": "0.1.6",
"readmeFilename": "README.md",
"description": "Unicode Consortium JSON locale files.",
"repository": {
"type": "git",
"url": "https://github.com/iambumblehead/json-locale.git"
},
"scripts": {
"lint": "eslint 'src/*.js'",
"test": "jasmine --verbose",
"start": "cd test && node build.js"
},
"license": "Unicode-TOU",
"keywords": [
"time",
"date",
"calendar",
"formatting",
"unicode",
"json",
"locale",
"locales",
"dates",
"regions",
"cuture",
"ldml",
"cldr"
],
"dependencies": {
"castas": "^0.0.3",
"yargs": "^11.0.0",
"node-fs": "^0.1.7",
"pathpublic": "^0.0.8",
"objobjwalk": "^0.0.7"
},
"devDependencies": {
"pre-commit": "^1.2.2",
"jasmine": "2.5.3",
"jasmine-spec-reporter": "3.2.0",
"babel-eslint": "^7.2.3",
"eslint": "^4.7.2",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.16.0"
},
"pre-commit": {
"silent": true,
"run": [
"lint",
"test"
]
}
}