-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 900 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
34
35
36
37
{
"name": "factory-js",
"version": "1.3.2",
"description": "Building JavaScript objects inspired by rosie and factory_girl",
"main": "./dist/factory.js",
"license": "MIT",
"author": "Tomasz Bak <[email protected]>",
"keywords": [
"factory",
"factory_girl",
"test data",
"fixture"
],
"repository": {
"type": "git",
"url": "https://github.com/tb/factory-js"
},
"bugs": {
"url": "https://github.com/tb/factory-js/issues"
},
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-banner": "~0.2.2",
"grunt-coffeelint": "~0.0.8",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-coffee": "~0.10.1",
"grunt-contrib-uglify": "~0.4.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-env": "~0.4.1",
"grunt-istanbul": "~0.3.0",
"grunt-simple-mocha": "~0.4.0",
"chai": "~1.9.1"
}
}