-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
92 lines (92 loc) · 1.98 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
88
89
90
91
92
{
"name": "trails",
"version": "3.2.2",
"description": "Modern Web Application Framework for Node.js",
"keywords": [
"framework",
"platform",
"microservices",
"ecosystem",
"rest",
"api",
"rails",
"grails",
"sails",
"trails",
"trailsjs",
"server",
"graphql"
],
"scripts": {
"test": "eslint --ignore-path .gitignore index.js lib/ test/ && nyc mocha",
"test-performance": "eslint --ignore-path .gitignore . && mocha test-performance",
"ci": "cd .. && ci"
},
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/trailsjs/trails.git"
},
"author": "Trails.js Team <hello@trailsjs.io>",
"contributors": [
{
"name": "Travis Webb",
"email": "me@traviswebb.com",
"url": "https://github.com/tjwebb"
},
{
"name": "Konstantin Zolotarev",
"url": "https://github.com/konstantinzolotarev"
},
{
"name": "Weyland Joyner",
"url": "https://github.com/weyj4"
},
{
"name": "Jimmy Aumard",
"url": "https://github.com/jaumard"
},
{
"name": "Robert Rossmann",
"url": "https://github.com/Alaneor"
},
{
"name": "Mike Hostetler",
"email": "mike@epicfirm.com"
},
{
"name": "Scott Wyatt",
"email": "scottwyatt86@gmail.com",
"url": "https://github.com/scott-wyatt"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/trailsjs/trails/issues"
},
"homepage": "http://trailsjs.io",
"dependencies": {
"lodash.merge": "4.6.0",
"mkdirp": "0.5.1"
},
"devDependencies": {
"eslint": "^4.15.0",
"eslint-config-trails": "^3",
"mocha": "^4",
"nyc": "^11.4.1",
"pre-commit": "^1.2.2",
"proxyquire": "^1.8.0",
"smokesignals": "^3",
"trailpack": "^3"
},
"eslintConfig": {
"extends": "trails"
},
"engines": {
"node": ">= 7.6.0",
"npm": ">= 3.10.0"
},
"runkitExample": "test/runkitExample.js"
}