forked from city41/node-sql-fixtures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.1 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
{
"name": "sql-fixtures",
"version": "1.0.0",
"description": "Populate a SQL database with fixture data",
"main": "index.js",
"scripts": {
"test": "fig up"
},
"files": [
"index.js",
"lib",
"README.md",
"LICENSE",
"CHANGELOG"
],
"keywords": [
"fixtures",
"sql",
"postgres",
"sqlite",
"mysql",
"testing",
"dummy",
"data"
],
"author": "Matt Greer <[email protected]> (http://www.mattgreer.org/)",
"contributors": [
"Blaine Bublitz <[email protected]> (http://iceddev.com/)"
],
"license": "MIT",
"dependencies": {
"bluebird": "3.2.2",
"knex": "0.9.0",
"lodash": "4.3.0"
},
"repository": {
"type": "git",
"url": "git://github.com/city41/node-sql-fixtures.git"
},
"homepage": "https://github.com/city41/node-sql-fixtures",
"devDependencies": {
"chai": "^1.9.1",
"chai-as-promised": "^4.1.1",
"gulp": "^3.9.0",
"gulp-jshint": "^1.8.5",
"gulp-mocha": "^2.1.0",
"gulp-shell": "^0.2.9",
"mocha": "^1.21.4",
"mysql": "^2.5.2",
"pg": "^4.4.4",
"sqlite3": "^3.0.5"
}
}