-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.57 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.57 KB
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
{
"name": "questioner",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "8.11.4",
"npm": "5.6.0"
},
"dependencies": {
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.3",
"chai-http": "^4.2.1",
"cors": "^2.8.5",
"coveralls": "^3.0.2",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"joi": "^13.1.0",
"jsonwebtoken": "^8.4.0",
"moment": "^2.23.0",
"pg": "^7.8.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/register": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"eslint": "^5.11.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.18.9",
"nyc": "^13.1.0"
},
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha test/testIndex --compilers js:babel-core/register --timeout 12000 --exit ",
"babel": "babel --preset es2015 ./index.js -d ./build",
"start": "node --require babel-register index.js",
"pin": "nodemon --exec babel-node --presets env index",
"coverage": "nyc report --reporter=text-lcov | coveralls "
},
"repository": {
"type": "git",
"url": "git+https://github.com/Inclet/questioner.git"
},
"keywords": [
"quest"
],
"author": "Inclet",
"license": "ISC",
"bugs": {
"url": "https://github.com/Inclet/questioner/issues"
},
"homepage": "https://github.com/Inclet/questioner#readme"
}