-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.46 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
52
53
54
55
56
57
58
59
{
"name": "unionized",
"main": "./lib/index.js",
"version": "6.3.1",
"scripts": {
"build": "coffee --bare --output lib/ --compile src/*.coffee",
"pretest": "yarn run build",
"prepublishOnly": "yarn run build",
"test": "mocha test/*.spec.coffee",
"test:watch": "yarn run test -- --watch",
"ci": "yarn run test"
},
"repository": {
"type": "git",
"url": "https://github.com/goodeggs/unionized"
},
"keywords": [
"factory",
"objects"
],
"dependencies": {
"bluebird": "^3.7.2",
"fake-eggs": "^6.5.3",
"goodeggs-json-schema-validator": "^5.3.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"blanket": "~1.2.3",
"chai": "^2.3.0",
"chai-as-promised": "^7.1.2",
"coffee-script": "^1.12.7",
"mocha": "^2.5.3",
"moment": "^2.30.1",
"mongoose": "^4.0.3"
},
"description": "A factory framework for mock test objects in JavaScript. Will generate objects, models, and scenarios for tests.",
"bugs": {
"url": "https://github.com/goodeggs/unionized/issues"
},
"directories": {
"test": "test"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"always-auth": true
},
"contributors": [
"Max Edmands <max@goodeggs.com> (http://maxedmands.com)",
"Danny Nelson <danny@goodeggs.com>",
"Ben Buckman <ben@goodeggs.com>",
"Alex Gorbatchev"
],
"license": "MIT",
"config": {
"blanket": {
"pattern": "lib/unionized.js"
}
}
}