forked from christophertrudel/node_acl_knex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "acl-knex",
"version": "0.2.2",
"description": "A Knex.js backend for node_acl",
"keywords": [
"middleware",
"acl",
"web",
"knex",
"postgres",
"mysql"
],
"repository": "[email protected]:christophertrudel/node_acl_knex.git",
"author": "Christopher Trudel <[email protected]>",
"homepage": "https://github.com/christophertrudel/node_acl_knex",
"engines": {
"node": ">= 0.4.1"
},
"main": "./index.js",
"dependencies": {
"async": "0.9.0",
"lodash": "2.4.1",
"knex": "0.6.22"
},
"devDependencies": {
"acl": "0.4.3",
"pg": "3.4.0",
"grunt": "0.4.5",
"grunt-cli": "0.1.13",
"load-grunt-tasks": "0.6.0",
"grunt-contrib-jshint": "0.9.2",
"mocha": "1.21.3",
"chai": "1.9.1",
"coveralls": "2.11.1",
"istanbul": "0.3.0"
},
"scripts": {
"test": "mocha test/runner.js --reporter spec",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
}
}