-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 881 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 881 Bytes
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
{
"name": "gulp-sqlite3",
"version": "0.0.1",
"description": "A gulp module that executes sql files against a SQLite database.",
"main": "gulpSqlite3.js",
"scripts": {
"pretest": "jshint gulpSqlite3.js test/",
"test": "mocha --reporter spec"
},
"jshintConfig": {
"esnext": true
},
"repository": {
"type": "git",
"url": "https://edj-boston@github.com/edj-boston/gulp-sqlite3.git"
},
"keywords": [
"gulp",
"sqlite3",
"sql",
"ddl"
],
"author": "Eric Johnson",
"license": "MIT",
"bugs": {
"url": "https://github.com/edj-boston/gulp-sqlite3/issues"
},
"homepage": "https://github.com/edj-boston/gulp-sqlite3",
"dependencies": {
"gulp-util": "^3.0.1",
"should": "^4.4.2",
"sqlite3": "^3.0.4",
"through2": "^0.6.3"
},
"devDependencies": {
"jshint": "^2.5.11",
"mocha": "^2.1.0"
}
}