-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.09 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
{
"name": "weathered",
"version": "0.3.6",
"description": "A JavaScript wrapper for the National Weather Service API",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "jest",
"docs": "typedoc --out docs --theme default --excludePrivate src/index.ts"
},
"keywords": [
"weather",
"nws",
"national",
"weather",
"service",
"forecast"
],
"author": "Jason Sanford",
"license": "BSD-2-Clause",
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"babel-jest": "^27.0.2",
"eslint": "^7.27.0",
"jest": "^27.0.1",
"typedoc": "^0.22.13",
"typescript": "^4.2.3"
},
"dependencies": {
"cross-fetch": "^3.1.4"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/dist/",
"<rootDir>/node_modules/"
]
},
"repository": "JasonSanford/weathered"
}