This repository has been archived by the owner on Feb 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.36 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": "radiorevolt-api",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"clean": "rm -rf dist",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "npm run clean && npm run dist",
"dist": "babel src --out-dir dist",
"start": "node dist/index.js",
"start:dev": "nodemon src/index.js --exec babel-node",
"start:test": "babel-node test/test",
"test": "npm run lint && npm run tests",
"tests": "NODE_ENV=test nyc ava --serial",
"test:watch": "NODE_ENV=test ava --serial --watch",
"load": "babel-node test/load.js"
},
"ava": {
"require": "babel-core/register",
"files": [
"test/**/*.test.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Studentmediene/RadioRevolt-API.git"
},
"author": "Studentmediene i Trondheim <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Studentmediene/RadioRevolt-API.git/issues"
},
"homepage": "https://github.com/Studentmediene/RadioRevolt-API.git#readme",
"dependencies": {
"ava": "0.15.2",
"ava-spec": "1.0.1",
"bluebird": "3.4.0",
"body-parser": "1.15.1",
"composable-middleware": "0.3.0",
"continuation-local-storage": "3.1.7",
"cookie-parser": "1.4.3",
"cors": "2.7.1",
"errorhandler": "1.4.3",
"express": "4.13.4",
"fs": "0.0.1-security",
"jsonwebtoken": "7.0.1",
"lodash": "4.13.1",
"method-override": "2.3.6",
"moment": "2.14.1",
"morgan": "1.7.0",
"passport": "^0.3.2",
"passport-saml": "^0.15.0",
"pg": "6.0.1",
"raven": "0.12.0",
"sequelize": "3.23.3",
"sequelize-fixtures": "0.5.3",
"slugify": "^1.1.0",
"supertest": "2.0.0",
"supertest-as-promised": "3.1.0",
"umzug": "1.11.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"child-process-promise": "^2.0.3",
"coveralls": "^2.11.9",
"esdoc": "^0.4.7",
"esdoc-es7-plugin": "0.0.3",
"eslint": "^3.2.2",
"eslint-config-airbnb-base": "^5.0.1",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-import": "^1.8.1",
"jsdoc": "^3.4.0",
"jsdoc-babel": "^0.2.0",
"nyc": "^7.1.0"
}
}