forked from richardschneider/yact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (50 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
45
46
47
48
49
50
51
{
"name": "yact",
"version": "0.1.0",
"description": "Yet another change tracker for SQL. Creates an audit log that tracks all changes to a database table.",
"main": "index.js",
"scripts": {
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "https://github.com/richardschneider/yact.git"
},
"keywords": [
"sql",
"change",
"tracker",
"audit",
"xml",
"database",
"table"
],
"author": "Richard Schneider",
"license": "MIT",
"bugs": {
"url": "https://github.com/richardschneider/yact/issues"
},
"homepage": "https://github.com/richardschneider/yact",
"devDependencies": {
"chai": "^2.1.1",
"mocha": "^2.2.1",
"gulp": "^3.8.8",
"gulp-util": "^3.0.1",
"gulp-bump": "^0.1.11",
"gulp-jscs": "^1.1.2",
"gulp-jshint": "^1.8.4",
"gulp-mocha": "^1.1.0",
"gulp-istanbul": "^0.5.0",
"should": "^4.0.4",
"jshint-stylish": "^0.4.0",
"gulp-load-plugins": "^0.6.0",
"gulp-plumber": "^0.6.5"
},
"bin": {
"yact": "src/yact-cl.js"
},
"dependencies": {
"commander": "^2.7.1",
"dot": "^1.0.3"
}
}