forked from ember-intl/ember-intl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.07 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
96
97
98
99
100
101
{
"name": "ember-intl",
"version": "4.0.0-beta.2",
"description": "A internationalization toolbox for ambitious applications.",
"keywords": [
"ember-addon",
"i18n",
"ember-intl",
"ember-i18n",
"ember",
"internationalization"
],
"author": "jason.mitchell.w@gmail.com",
"license": "BSD-3-Clause",
"directories": {
"doc": "doc",
"test": "tests"
},
"homepage": "https://github.com/ember-intl/ember-intl",
"repository": {
"type": "git",
"url": "http://github.com/ember-intl/ember-intl.git"
},
"scripts": {
"start": "ember serve",
"build": "ember build",
"lint:js": "eslint .",
"tests-node": "mocha \"tests-node/**/*.js\"",
"test": "npm run tests-node && ember test",
"testall": "npm run tests-node && ember try:each",
"prettier": "prettier --single-quote --print-width 120 --write \"{blueprints,config,lib,app,addon,addon-test-support,tests,tests-node}/**/*.js\""
},
"dependencies": {
"@ember-intl/broccoli-cldr-data": "^3.1.0",
"@ember-intl/intl-messageformat": "^2.2.0",
"@ember-intl/intl-messageformat-parser": "^1.5.0",
"@ember-intl/intl-relativeformat": "^2.1.0",
"broccoli-caching-writer": "^3.0.3",
"broccoli-funnel": "^2.0.1",
"broccoli-merge-trees": "^3.0.1",
"broccoli-source": "^1.1.0",
"broccoli-stew": "^2.0.1",
"cldr-core": "^34.0.0",
"ember-auto-import": "^1.2.15",
"ember-cli-babel": "^7.1.3",
"extend": "^3.0.2",
"fast-memoize": "^2.5.1",
"has-unicode": "^2.0.1",
"intl": "^1.2.5",
"js-yaml": "^3.12.0",
"json-stable-stringify": "^1.0.1",
"locale-emoji": "^0.3.0",
"lodash.castarray": "^4.4.0",
"lodash.get": "^4.4.2",
"lodash.last": "^3.0.0",
"lodash.omit": "^4.5.0",
"mkdirp": "^0.5.1",
"silent-error": "^1.1.1",
"walk-sync": "^0.3.3"
},
"devDependencies": {
"@ember/optional-features": "^0.7.0",
"babel-eslint": "^10.0.1",
"broccoli-test-helper": "^2.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"ember-cli": "^3.3.0",
"ember-cli-htmlbars": "^3.0.1",
"ember-cli-htmlbars-inline-precompile": "^2.0.0",
"ember-cli-inject-live-reload": "^2.0.1",
"ember-cli-qunit": "^4.4.0",
"ember-cli-shims": "^1.2.0",
"ember-code-snippet": "^2.2.2",
"ember-disable-prototype-extensions": "^1.1.3",
"ember-export-application-global": "^2.0.0",
"ember-load-initializers": "^2.0.0",
"ember-maybe-import-regenerator-for-testing": "^1.0.0",
"ember-open-browser": "^1.0.0",
"ember-resolver": "^5.0.1",
"ember-source": "~3.5.1",
"ember-source-channel-url": "^1.1.0",
"ember-try": "^1.1.0",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-ember": "^6.0.1",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"loader.js": "^4.7.0",
"mocha": "^5.2.0",
"prettier": "^1.15.2",
"qunit-dom": "^0.8.1",
"rsvp": "^4.8.4"
},
"engines": {
"node": "6.* || >= 7.*"
},
"ember-addon": {
"configPath": "tests/dummy/config",
"demoURL": "https://ember-intl.github.io/"
}
}