-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
60 lines (60 loc) · 1.44 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
{
"name": "feels",
"author": "Alexey Bystrov <strikeentco@gmail.com>",
"version": "3.0.0",
"description": "Feels allow you to calculate apparent temperature using heat index, approximate wet-bulb globe temperature, humidex, australian apparent temperature and wind chill.",
"engines": {
"node": ">=6.0.0"
},
"keywords": [
"humidex",
"wind chill",
"heat index",
"wind",
"chill",
"heat",
"index",
"wbgt",
"aat",
"feels like",
"real feel",
"comfort",
"temperature",
"speed",
"convert",
"apparent",
"humidity",
"dew point",
"frost point"
],
"main": "./main.js",
"files": [
"lib",
"main.js"
],
"scripts": {
"test": "mocha test",
"lint": "eslint main.js lib/**",
"check": "npm run lint && npm run test",
"cover": "nyc ./node_modules/mocha/bin/_mocha && nyc report --reporter=html",
"test-on-travis": "nyc ./node_modules/mocha/bin/_mocha && nyc report --reporter=lcovonly"
},
"repository": {
"type": "git",
"url": "git+https://github.com/strikeentco/feels.git"
},
"bugs": {
"url": "https://github.com/strikeentco/feels/issues"
},
"devDependencies": {
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"mocha": "^5.0.1",
"nyc": "^11.4.1",
"should": "^13.2.1"
},
"license": "MIT"
}