-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 945 Bytes
/
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
{
"name": "node-data-mapper",
"version": "1.1.27",
"description": "An object-relational mapper for node.js using the data mapper pattern.",
"main": "index.js",
"scripts": {
"test": "grunt",
"coverage": "./node_modules/.bin/istanbul cover -x 'grunt/*' `which grunt` && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"author": "Ben Botto",
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/benbotto/node-data-mapper.git"
},
"devDependencies": {
"coveralls": "^2.11.6",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-watch": "^0.6.1",
"grunt-jasmine-nodejs": "^1.5.4",
"grunt-jsdoc": "^2.1.0",
"istanbul": "^0.4.1",
"node-data-mapper-mysql": "^1.1.2"
},
"dependencies": {
"bsy-error": "^1.0.4",
"deferred": "^0.7.4",
"glob": "^7.1.1",
"insulin": "^1.0.7",
"moment": "^2.13.0"
}
}