-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1.01 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
{
"name": "is-req-https",
"version": "1.0.5",
"description": "This module returns whether a request is under https",
"main": "./lib/index.js",
"scripts": {
"clean": "rm -rf lib/ dist/",
"build": "npm run clean && babel src --out-dir lib",
"test": "mocha test/*.js",
"prepublish": "npm run build && npm run test"
},
"keywords": [
"https"
],
"repository": {
"type": "git",
"url": "git+https://github.com/idandagan1/is-req-https.git"
},
"author": "Idan Dagan <idandagan1@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/idandagan1/is-req-https/issues"
},
"homepage": "https://github.com/idandagan1/is-req-https#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-babili": "^0.1.4",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.14.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"mocha": "^4.1.0"
}
}