-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
44 lines (44 loc) · 1.11 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
{
"name": "knex-csv-seeder",
"version": "0.4.1",
"description": "CSV file seeder for Knex",
"main": "lib/seeder.js",
"files": [
"lib/*.js",
"README.md"
],
"scripts": {
"test": "istanbul cover _mocha",
"build": "./node_modules/.bin/babel -d lib -s inline src",
"watch": "./node_modules/.bin/babel -d lib -s inline -w src"
},
"repository": {
"type": "git",
"url": "https://github.com/holyshared/knex-csv-seeder.git"
},
"author": "Noritaka Horio",
"license": "MIT",
"bugs": {
"url": "https://github.com/holyshared/knex-csv-seeder/issues"
},
"homepage": "https://github.com/holyshared/knex-csv-seeder",
"dependencies": {
"bluebird": "^3.3.5",
"csv-parse": "~1.1",
"iconv-lite": "~0.4",
"knex": "^0.11.5",
"lodash": "^4.11.1"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-plugin-transform-es2015-modules-commonjs": "^6.7.7",
"codecov": "~1.0",
"coffee-script": "~1.10",
"eslint": "^2.8.0",
"espower-coffee": "~1.0",
"istanbul": "~0.4",
"mocha": "^2.5.3",
"mysql": "^2.11.1",
"power-assert": "^1.4.1"
}
}