-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.24 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
{
"name": "cufflink",
"version": "1.3.0",
"description": "A command tool to help generate seed data based on your object schema in your applications",
"main": "src/cufflink.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/generationtux/cufflink.git"
},
"keywords": [
"gentux",
"database",
"seeder",
"object",
"schema",
"fixture",
"generation",
"tux",
"seed",
"table"
],
"author": "Gentux",
"license": "MIT",
"bin": {
"cufflink": "./src/cufflink.js"
},
"bugs": {
"url": "https://github.com/generationtux/cufflink/issues"
},
"homepage": "https://github.com/generationtux/cufflink#readme",
"engines": {
"node": ">=5.0.0"
},
"dependencies": {
"commander": "^2.9.0",
"dependency-graph": "^0.5.0",
"ora": "^0.3.0"
},
"devDependencies": {
"assert": "^1.4.1",
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"mock-fs": "^3.11.0",
"mockery-partial": "^1.4.0"
}
}