forked from popcorn-official/pop-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.62 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
{
"name": "@pct-org/pop-api",
"version": "0.9.0",
"private": false,
"description": "The base modules for popcorn-api",
"keywords": [
"api",
"middleware",
"popcorn"
],
"license": "MIT",
"files": [
"build/**/*"
],
"main": "./build/pop-api.js",
"module": "./build/pop-api.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/pct-org/pop-api.git"
},
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"flow": "flow",
"flow-typed": "flow-typed install",
"lint": "eslint {example,src,test}/** *.js$",
"prepublish": "yarn build",
"start:debug": "yarn start:dev --inspect",
"start:dev": "cross-env DEBUG=pop-api* NODE_ENV=development babel-node ./examples/exampleSetup.js",
"test": "cross-env NODE_ENV=test nyc -r=lcov -r=text mocha --exit --recursive"
},
"dependencies": {
"@chrisalderson/express-winston": "^3.1.0",
"body-parser": "^1.18.2",
"commander": "3.0.1",
"compression": "^1.7.1",
"debug": "4.1.1",
"del": "5.1.0",
"express": "^4.16.2",
"helmet": "^3.10.0",
"mkdirp": "^0.5.1",
"mongoose": "^5.0.1",
"p-map": "3.0.0",
"response-time": "^2.3.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.6.0",
"@babel/node": "^7.6.1",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-strict-mode": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-plugin-istanbul": "5.2.0",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"cross-env": "^5.1.4",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-flow-type-plugin": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "6.3.0",
"eslint-config-vixo": "^2.0.2",
"flow": "^0.2.3",
"flow-bin": "0.107.0",
"flow-typed": "^2.2.3",
"husky": "3.0.5",
"mocha": "6.2.0",
"nyc": "14.1.1",
"rollup": "1.21.2",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-uglify": "6.0.3",
"sinon": "7.4.2",
"standard-version": "7.0.0",
"supertest": "4.0.2",
"uglify-es": "^3.3.9"
},
"engines": {
"node": ">=7.10.1"
}
}