-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.47 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
{
"name": "role-manager",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build-babel": "babel -d ./build ./src -s",
"build": "npm run clean && npm run build-babel",
"clean": "rm -rf build coverage && mkdir build",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"start:dev": "set DEBUG=dev && nodemon --exec babel-node ./src/index.js",
"start": "node ./build/index.js",
"postinstall": "npm run build",
"test": "cross-env NODE_ENV=test nyc mocha --require @babel/register --timeout 1000 ./test/index.js --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devcareer/Role-Manager.git"
},
"author": "devcareers",
"license": "ISC",
"bugs": {
"url": "https://github.com/devcareer/Role-Manager/issues"
},
"homepage": "https://github.com/devcareer/Role-Manager#readme",
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/node": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/register": "^7.6.2",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"coveralls": "^3.0.6",
"cross-env": "^6.0.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.1",
"nodemon": "^1.19.3",
"nyc": "^14.1.1"
},
"dependencies": {
"debug": "^4.1.1",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"morgan": "^1.9.1",
"swagger-ui-express": "^4.1.1"
}
}