This repository has been archived by the owner on Feb 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 2.03 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
{
"name": "ember-i18n-csv",
"version": "2.0.1",
"description": "JSON to CSV and vice-versa for ember-i18n",
"main": "dist/ember-i18n-csv.js",
"bin": {
"ember-i18n-csv": "bin/ember-i18n-csv.js"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "babel lib -d dist",
"prepublish": "npm run build",
"test": "mocha --require babel-register test/**/*-test.js",
"posttest": "npm run lint",
"cover": "babel-node node_modules/isparta/bin/isparta cover --include-all-sources --report html --report lcov node_modules/mocha/bin/_mocha -- --require babel-register test/**/*-test.js",
"debug": "node debug node_modules/mocha/bin/_mocha --no-timeouts --require babel-register \"test/integration/**/*-test.js\"",
"prelint": "eslint --version",
"lint": "eslint bin lib test",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/kellyselden/ember-i18n-csv.git"
},
"author": "Kelly Selden <[email protected]> (https://github.com/kellyselden)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kellyselden/ember-i18n-csv/issues"
},
"homepage": "https://github.com/kellyselden/ember-i18n-csv#readme",
"dependencies": {
"csv-parse": "^1.3.3",
"csv-stringify": "^1.1.2",
"denodeify": "^1.0.0",
"eol": "0.9.1",
"lodash": "^4.17.5",
"promise": "^8.0.0",
"yargs": "^12.0.1"
},
"devDependencies": {
"babel-cli": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-2": "^6.0.0",
"babel-register": "^6.0.0",
"chai": "^4.0.1",
"coveralls": "^3.0.0",
"eslint": "^5.0.1",
"eslint-config-sane": "^0.6.0",
"eslint-plugin-prefer-let": "^1.0.0",
"fs-equal": "^2.0.0",
"fs-extra": "^7.0.0",
"isparta": "^4.0.0",
"mocha": "^5.0.0",
"rimraf": "^2.0.0"
},
"keywords": [
"ember",
"ember-i18n",
"csv",
"ember-cli",
"i18n"
],
"engines": {
"node": ">= 6"
},
"greenkeeper": {
"ignore": [
"csv-parse",
"csv-stringify"
]
}
}