This repository has been archived by the owner on Feb 21, 2024. It is now read-only.
forked from ember-intl/ember-intl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.53 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "ember-intl",
"version": "5.0.0-0",
"description": "A internationalization toolbox for ambitious applications.",
"keywords": [
"ember-addon",
"i18n",
"ember-intl",
"ember-i18n",
"ember",
"internationalization"
],
"author": "[email protected]",
"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 .",
"lint-staged": "lint-staged",
"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.5.0",
"@ember-intl/intl-messageformat-parser": "^1.5.0",
"@ember-intl/intl-relativeformat": "^2.1.0",
"broccoli-caching-writer": "^3.0.3",
"broccoli-funnel": "^3.0.1",
"broccoli-merge-trees": "^4.1.0",
"broccoli-source": "^3.0.0",
"broccoli-stew": "^3.0.0",
"calculate-cache-key-for-tree": "^2.0.0",
"cldr-core": "^36.0.0",
"ember-auto-import": "^1.5.2",
"ember-cli-babel": "^7.10.0",
"extend": "^3.0.2",
"fast-memoize": "^2.5.1",
"has-unicode": "^2.0.1",
"js-yaml": "^3.12.2",
"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": "^1.0.3",
"silent-error": "^1.1.1",
"walk-sync": "^2.0.1"
},
"devDependencies": {
"@ember/optional-features": "^1.0.0",
"babel-eslint": "^10.0.3",
"broccoli-test-helper": "^2.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"ember-cli": "~3.16.0",
"ember-cli-addon-docs": "^0.6.15",
"ember-cli-addon-docs-esdoc": "^0.2.3",
"ember-cli-deploy": "^1.0.2",
"ember-cli-deploy-build": "^2.0.0",
"ember-cli-deploy-git": "^1.3.3",
"ember-cli-deploy-git-ci": "^1.0.1",
"ember-cli-github-pages": "^0.2.1",
"ember-cli-htmlbars": "^4.0.0",
"ember-cli-inject-live-reload": "^2.0.1",
"ember-cli-qunit": "^4.4.0",
"ember-cli-testdouble-qunit": "^2.1.1",
"ember-code-snippet": "^3.0.0",
"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": "^7.0.0",
"ember-source": "~3.16.0",
"ember-source-channel-url": "^2.0.1",
"ember-try": "^1.2.1",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-ember": "^7.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.0",
"lint-staged": "^10.0.0",
"loader.js": "^4.7.0",
"mocha": "^7.0.0",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2",
"qunit-dom": "^1.0.0",
"rsvp": "^4.8.5",
"testdouble": "^3.12.0"
},
"engines": {
"node": "8.* || >= 10.*"
},
"pre-commit": "lint-staged",
"lint-staged": {
"*.js": [
"eslint"
]
},
"ember-addon": {
"configPath": "tests/dummy/config",
"demoURL": "https://ember-intl.github.io/"
}
}