This repository has been archived by the owner on Nov 15, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
64 lines (64 loc) · 1.83 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
{
"name": "vue-locale",
"version": "0.4.0",
"description": "Advanced localization support for VueJS",
"keywords": [
"vuejs",
"locale",
"translation",
"formatting",
"date",
"number",
"formatjs"
],
"author": "Sebastian Werner <[email protected]>",
"license": "Apache-2.0",
"repository": "https://github.com/sebastian-software/vue-locale",
"bugs": {
"url": "https://github.com/sebastian-software/vue-locale/issues"
},
"homepage": "https://github.com/sebastian-software/vue-locale",
"dependencies": {
"intl": "^1.1.0",
"intl-format-cache": "^2.0.5",
"intl-locales-supported": "^1.0.0",
"intl-messageformat": "^1.3.0",
"intl-relativeformat": "^1.3.0",
"lodash": "^4.11.1"
},
"main": "lib/VueLocale.js",
"devDependencies": {
"ava": "^0.15.2",
"babel-cli": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"del": "^2.2.0",
"eslint": "^3.1.1",
"formatjs-extract-cldr-data": "^3.0.0",
"gulp": "^3.9.1",
"javascript-stringify": "^1.1.0",
"s15e-javascript": "^0.2.0",
"updtr": "^0.1.10"
},
"scripts": {
"lint": "eslint --cache *.js src/*.js",
"autofix": "eslint --cache --fix *.js src/*.js",
"build": "babel --source-maps true --out-dir ./lib/ ./src/ && gulp build-data",
"pretest": "npm run build",
"test": "ava",
"test:watch": "ava --watch",
"prepublish": "npm run build",
"release": "release-it --github.release --npm.publish --non-interactive",
"release-minor": "release-it --github.release --npm.publish --non-interactive --increment minor",
"release-major": "release-it --github.release --npm.publish --non-interactive --increment major",
"depupdate": "updtr"
},
"ava": {
"files": [
"test.js"
],
"require": [
"babel-register"
]
}
}