-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.9 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
{
"name": "pop-api",
"version": "0.1.0",
"description": "The base modules for popcorn-api",
"dependencies": {
"body-parser": "^1.18.2",
"commander": "^2.12.2",
"compression": "^1.7.1",
"del": "^3.0.0",
"express": "^4.16.2",
"express-winston": "^2.4.0",
"mkdirp": "^0.5.1",
"mongoose": "^4.13.5",
"p-map": "^1.2.0",
"response-time": "^2.3.2",
"rimraf": "^2.6.2",
"sprintf-js": "^1.1.1",
"winston": "^3.0.0-rc1"
},
"devDependencies": {
"babel-cli": "^6.26.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-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.1",
"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.12.0",
"eslint-config-vixo": "^2.0.1",
"flow": "^0.2.3",
"flow-bin": "^0.59.0",
"flow-typed": "^2.2.3",
"husky": "^0.14.3",
"mocha": "^4.0.1",
"nyc": "^11.4.0",
"sinon": "^4.1.2",
"standard-version": "^4.2.0",
"supertest": "^3.0.0"
},
"license": "MIT",
"scripts": {
"build": "./node_modules/.bin/babel src --out-dir build --no-comments",
"coveralls": "cat ./coverage/lcov.info | node ./node_modules/.bin/coveralls",
"debug": "./node_modules/.bin/cross-env DEBUG=pop-api* NODE_ENV=development node --require babel-register --inspect=http://localhost:9229 ./examples/exampleSetup.js",
"dev": "./node_modules/.bin/cross-env DEBUG=pop-api* NODE_ENV=development ./node_modules/.bin/babel-node ./examples/exampleSetup.js",
"docs": "./node_modules/.bin/esdoc -c .esdoc.json",
"flow": "./node_modules/.bin/flow",
"lint": "./node_modules/.bin/eslint {example,src,test}/** *.js$",
"release": "./node_modules/.bin/standard-version",
"precommit": "npm run lint && npm run flow",
"prerelease": "npm run build",
"prepush": "npm run test",
"test": "./node_modules/.bin/cross-env NODE_ENV=test ./node_modules/.bin/nyc --reporter=lcov --reporter=text ./node_modules/.bin/mocha --recursive --exit --reporter spec test/**"
},
"engines": {
"node": ">=7.10.1"
},
"keywords": [
"api",
"popcorn",
"middleware"
],
"main": "./build/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/popcorn-official/pop-api.git"
},
"files": [
"build/**/*"
],
"eslintConfig": {
"extends": "vixo",
"globals": {
"logger": true
}
},
"nyc": {
"require": [
"babel-register"
],
"include": [
"src"
],
"sourceMap": false,
"instrument": false
}
}