forked from fabrix-app/fabrix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·117 lines (117 loc) · 2.69 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@fabrix/fabrix",
"version": "1.5.9",
"description": "Strongly Typed Modern Web Application Framework for Node.js",
"keywords": [
"framework",
"platform",
"microservices",
"ecosystem",
"rest",
"api",
"rails",
"grails",
"sails",
"trails",
"sails.js",
"trails.js",
"fabrix",
"fabrix.js",
"fabrix.ts",
"typescript",
"server",
"cqrs",
"event-sourcing",
"graphql"
],
"scripts": {
"build": "tsc -p ./lib/tsconfig.release.json",
"lint": "tslint -p ./lib",
"watch": "tsc -w -p ./lib/tsconfig.release.json",
"test": "npm run clean && npm run lint && npm run build && nyc mocha",
"test-performance": "mocha test-performance",
"test-archetype": "cd archetype && npm install && npm test",
"prepublishOnly": "npm run compile",
"compile": "npm run clean && npm run build",
"clean": "rm -rf dist",
"ci": "cd .. && ci"
},
"main": "dist/index",
"typings": "dist/index",
"files": [
"dist",
"archetype"
],
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fabrix-app/fabrix.git"
},
"author": "Fabrix-app Team <[email protected]>",
"contributors": [
{
"name": "Scott Wyatt",
"email": "[email protected]",
"url": "https://github.com/scott-wyatt"
},
{
"name": "Travis Webb",
"email": "[email protected]",
"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": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fabrix-app/fabrix/issues"
},
"homepage": "https://fabrix.app",
"dependencies": {
"lodash": "^4.17.11",
"mkdirp": "0.5.1"
},
"devDependencies": {
"@fabrix/lint": "^1.0.0-alpha.3",
"@types/lodash": "^4.14.109",
"@types/mkdirp": "^0.5.2",
"@types/node": "~10.3.4",
"copyfiles": "^2.0.0",
"mocha": "^5",
"nyc": "^12.0.2",
"pre-commit": "^1.1.3",
"proxyquire": "^1.7.11",
"rimraf": "~2.6.2",
"smokesignals": "^3",
"tslib": "~1.9.0",
"tslint": "~5.10.0",
"tslint-microsoft-contrib": "~5.0.3",
"tsutils": "~2.27.1",
"typescript": "~2.8.1"
},
"engines": {
"node": ">= 7.6.0 =< 10.0.0",
"npm": ">= 3.10.0"
},
"runkitExample": "test/runkitExample.js"
}