-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.4 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.4 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
{
"name": "node-requests",
"version": "1.0.3",
"description": "An npm module for generic requests. Enables route transformation for function execution",
"main": "index.js",
"scripts": {
"start": "node index",
"prestart": "npm run build",
"start:dev": "nodemon --exec babel-node src/index.js",
"build": "babel src/ -d dist/",
"test": "NODE_ENV=test nyc --reporter=text mocha test/ --recursive -r @babel/register -r @babel/polyfill",
"coveralls": "nyc report --reporter=lcov --reporter=text-lcov | ./node_modules/coveralls/bin/coveralls.js ",
"coverage": "nyc report --reporter=text-lcov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Merkll/node-req.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Merkll/node-req/issues"
},
"homepage": "https://github.com/Merkll/node-req#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"chai": "^4.2.0",
"coveralls": "^3.0.4",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1"
},
"dependencies": {
"path-to-regexp": "^3.0.0",
"@babel/polyfill": "^7.4.4"
}
}