-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·122 lines (122 loc) · 2.89 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
118
119
120
121
122
{
"name": "@fabrix/fabrix",
"version": "1.6.4",
"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": {
"release": "standard-version",
"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",
"webpack": "node_modules/.bin/webpack --config ./test-browser/webpack.config.js"
},
"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 <hello@fabrix.app>",
"contributors": [
{
"name": "Scott Wyatt",
"email": "scottwyatt86@gmail.com",
"url": "https://github.com/scott-wyatt"
},
{
"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"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fabrix-app/fabrix/issues"
},
"homepage": "https://fabrix.app",
"dependencies": {
"lodash": "^4.17.15",
"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.12.10",
"copyfiles": "^2.1.1",
"mocha": "^6",
"nyc": "^14.1.1",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.3",
"rimraf": "~2.6.2",
"smokesignals": "^3",
"standard-version": "^7.0.0",
"tslib": "~1.9.0",
"tslint": "~5.14.0",
"tslint-microsoft-contrib": "~6.1.0",
"tsutils": "~3.9.1",
"typescript": "~3.3.4000",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.3"
},
"engines": {
"node": ">= 7.6.0 =< 12",
"npm": ">= 3.10.0"
},
"runkitExample": "test/runkitExample.js"
}