-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "mock",
"version": "0.0.1",
"description": "Mock data Generator, uses a Schema (similar to Mongoose Schema but more extensive), it will use choice.js to generate more meaningful random data (human like) as oppose to random characters",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/valtido/mock.git"
},
"keywords": [
"Mock",
"data",
"generate",
"javascript",
"schema",
"choicejs"
],
"author": "Valtid Caushi valtido@hotmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/valtido/mock/issues"
},
"homepage": "https://github.com/valtido/mock",
"scripts": {
"build": "coffee -b --compile --output lib/ src/",
"test": "grunt"
},
"dependencies": {
"chance": "^0.5.9",
"underscore": "^1.6.0"
},
"devDependencies": {
"grunt-karma": "^0.8.3",
"karma-chrome-launcher": "^0.1.4",
"karma-coffee-preprocessor": "^0.2.1",
"karma-coverage": "^0.2.6",
"karma-firefox-launcher": "^0.1.3",
"karma-jasmine": "^0.1.5",
"karma-requirejs": "^0.2.2",
"karma-safari-launcher": "^0.1.1",
"requirejs": "^2.1.14"
}
}