forked from bredikhin/barrels
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.18 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "fixted",
"version": "4.2.6",
"description": "A simple way to populate Sails.js v1 models with data fixtures for testing purposes. Originally based on Barrels, by Ruslan Bredikhin.",
"keywords": [
"sails",
"models",
"fixtures",
"test",
"testing",
"database",
"orm",
"waterline",
"fake",
"data"
],
"dependencies": {
"async": "~3.2.5",
"lodash": "~4.17.21"
},
"devDependencies": {
"chai": "~4.4.1",
"eslint": "~8.57.0",
"mocha": "~10.4.0",
"pre-commit": "~1.2.2",
"sails": "~1.5.11",
"sails-disk": "~2.1.2",
"sails-hook-orm": "~4.0.3"
},
"peerDependencies": {
"sails": "1.x"
},
"files": [
"index.js"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/neonexus"
}
],
"main": "index.js",
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js . --max-warnings=0 --report-unused-disable-directives && echo '✔ Your .js files look good.'",
"test": "npm run lint && NODE_ENV=test PORT=1338 mocha -R spec --ui bdd --timeout 5000 \"test/**/*.test.js\" && echo '✔ Done ✔\n'"
},
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/neonexus/fixted.git"
},
"homepage": "https://github.com/neonexus/fixted",
"author": {
"name": "NeoNexus DeMortis",
"email": "[email protected]"
},
"contributors": [
{
"name": "Ruslan Bredikhin",
"email": "[email protected]"
},
{
"name": "Mikael Møller",
"email": "[email protected]"
},
{
"name": "U-Zyn Chua",
"email": "[email protected]"
},
{
"name": "Tuomas Salmi"
},
{
"name": "Victor Heng"
},
{
"name": "Marnus Weststrate",
"email": "[email protected]"
}
],
"license": "MIT",
"engines": {
"node": ">=20.10"
}
}