-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.23 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.23 KB
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
{
"name": "ember-l10n-crowdin",
"version": "0.1.2",
"description": "Manage translations for ember-l10n on crowdin.com",
"keywords": ["ember-addon"],
"repository": "",
"license": "MIT",
"author": "",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"lint:js": "eslint .",
"node-tests": "node node-tests/index.js",
"run-prettier": "prettier --write \"**/*.js\""
},
"dependencies": {
"chalk": "^2.4.2",
"decompress": "^4.2.0",
"ember-cli-string-utils": "^1.1.0",
"form-data": "^2.3.3",
"fs-extra": "^7.0.1",
"node-fetch": "^2.3.0",
"rsvp": "^4.8.4"
},
"devDependencies": {
"chai": "^4.2.0",
"ember-cli": "~3.7.1",
"ember-cli-dependency-checker": "^3.0.0",
"ember-cli-release-tag": "^0.1.5",
"eslint": "^5.14.1",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^3.0.1",
"glob": "^7.1.3",
"husky": "^1.3.1",
"lint-staged": "^8.1.4",
"mocha": "^6.0.2",
"nock": "^10.0.6",
"prettier": "^1.16.4"
},
"engines": {
"node": ">= 8"
},
"ember-addon": {
"configPath": "tests/dummy/config"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}