-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 1.13 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
{
"name": "factory-boy",
"version": "0.0.6",
"description": "Node.js library for creating objects from factories, inspired by Thoughtbot factory_bot.",
"main": "lib/index.js",
"scripts": {
"test": "mocha $(find test -name '*.coffee')",
"coverage": "COVERAGE=1 mocha -R html-cov $(find test -name '*.coffee') > coverage.html",
"coveralls": "COVERAGE=1 mocha -R mocha-lcov-reporter $(find test -name '*.coffee') | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/kbackowski/factory-boy"
},
"bugs" : {
"url" : "https://github.com/kbackowski/factory-boy/issues"
},
"devDependencies": {
"coffee-script" : "1.6.3",
"coffee-coverage" : "0.1.4",
"underscore" : "1.5.2",
"mocha" : "1.13.0",
"sinon" : "1.7.3",
"should" : "1.3.0",
"coveralls" : "2.3.0",
"mocha-lcov-reporter" : "0.0.1",
"browserify" : "2.24.0"
},
"author": "Kamil Backowski <[email protected]>",
"license": "MIT",
"readmeFilename": "README.md",
"gitHead": "054dd26fd46ce2332f60772d92d2c82b78324c92"
}