forked from rosiejs/rosie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 884 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
38
39
40
{
"name": "rosie",
"version": "2.0.1",
"description": "factory for building JavaScript objects, mostly useful for setting up test data. Inspired by factory_girl",
"keywords": [
"factory",
"rosie",
"test"
],
"author": "Brandon Keepers <brandon@opensoul.org>",
"contributors": [
"Brian Donovan <me@brian-donovan.com>"
],
"dependencies": {},
"devDependencies": {
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"jest": "^22.4.3",
"prettier": "^1.11.1",
"prettier-check": "^2.0.0"
},
"engines": {
"node": "*"
},
"repository": {
"type": "git",
"url": "git://github.com/rosiejs/rosie.git"
},
"main": "src/rosie.js",
"scripts": {
"pretest": "eslint src",
"test": "jest",
"watch": "jest --watch"
},
"files": [
"src/rosie.js"
],
"license": "MIT"
}