This repository has been archived by the owner on Mar 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.22 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
{
"name": "paperframe",
"version": "2.3.2",
"description": "A Node.js REST API Framework",
"main": "lib/index.js",
"scripts": {
"develop": "gulp develop",
"compile": "gulp compile",
"prepublish": "npm run compile",
"documentation": "gulp documentation",
"test": "gulp test",
"flow:copy": "flow-copy-source --verbose -i '**/test/**' src lib"
},
"ava": {
"require": [
"@babel/register"
]
},
"engines": {
"node": ">=8.5.0"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/paperworkco/paperframe.git"
},
"keywords": [
"Paperframe",
"Paperwork",
"Node",
"Koa",
"Frame",
"Framework",
"REST",
"API"
],
"author": {
"name": "The Paperwork Company",
"email": "highfive@paperwork.company",
"url": "https://paperwork.company"
},
"contributors": [
{
"name": "Marius M.",
"email": "marius@twostairs.com",
"url": "https://twostairs.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/paperworkco/paperframe/issues"
},
"homepage": "https://github.com/paperworkco/paperframe",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-flow-strip-types": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.0.0",
"ava": "^1.0.1",
"babel-eslint": "^10.0.1",
"documentation": "^9.1.1",
"eslint": "^5.12.0",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-ava": "^5.1.1",
"eslint-plugin-flowtype-errors": "^3.6.0",
"flow-bin": "^0.89.0",
"flow-copy-source": "^2.0.2",
"gulp": "^4.0.0",
"gulp-ava": "^1.0.0",
"gulp-babel": "^8.0.0",
"gulp-documentation": "^3.2.1",
"gulp-eslint": "^5.0.0",
"gulp-watch": "^5.0.1",
"rimraf": "^2.6.3",
"tmp": "0.0.33"
},
"dependencies": {
"eventemitter2": "^5.0.1",
"http-status-codes": "^1.3.0",
"lodash": "^4.17.11"
}
}