-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
90 lines (90 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
{
"name": "pop-api",
"version": "0.6.3",
"description": "The base modules for popcorn-api",
"dependencies": {
"@chrisalderson/express-winston": "^3.0.0",
"body-parser": "^1.18.2",
"commander": "^2.13.0",
"compression": "^1.7.1",
"debug": "^3.1.0",
"del": "^3.0.0",
"express": "^4.16.2",
"helmet": "^3.10.0",
"mkdirp": "^0.5.1",
"mongoose": "^5.0.1",
"p-map": "^1.2.0",
"response-time": "^2.3.2",
"winston": "^3.0.0-rc1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-strict-mode": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"esdoc": "^1.0.4",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-flow-type-plugin": "^1.0.1",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.16.0",
"eslint-config-vixo": "^2.0.2",
"flow": "^0.2.3",
"flow-bin": "^0.64.0",
"flow-typed": "^2.2.3",
"husky": "^0.14.3",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"rollup": "^0.55.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-uglify": "^3.0.0",
"sinon": "^4.2.2",
"standard-version": "^4.3.0",
"supertest": "^3.0.0",
"uglify-es": "^3.3.9"
},
"license": "MIT",
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"debug": "npm run dev --inspect",
"dev": "cross-env DEBUG=pop-api* NODE_ENV=development node -r babel-register ./examples/exampleSetup.js",
"docs": "esdoc -c .esdoc.json",
"flow": "flow",
"flow-typed": "flow-typed install",
"lint": "eslint {example,src,test}/** *.js$",
"release": "git add ./docs/* && standard-version -a",
"precommit": "npm run lint && npm run flow",
"prerelease": "npm run build && npm run docs",
"prepush": "npm run test",
"test": "cross-env NODE_ENV=test nyc -r=lcov -r=text mocha --exit --recursive"
},
"engines": {
"node": ">=7.10.1"
},
"keywords": [
"api",
"popcorn",
"middleware"
],
"main": "./build/pop-api.js",
"module": "./build/pop-api.esm.js",
"repository": {
"type": "git",
"url": "git+https://github.com/popcorn-official/pop-api.git"
},
"files": [
"build/**/*"
]
}