-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.46 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "airly",
"version": "3.1.0",
"description": "Simple wrapper for Airly API, works in Node.js & the browser.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist/index.js",
"dist/index.esm.js",
"dist/index.d.ts"
],
"license": "MIT",
"repository": "xxczaki/airly",
"author": {
"name": "Antoni Kepinski",
"email": "a@kepinski.me",
"url": "https://kepinski.me"
},
"scripts": {
"prebuild": "del-cli dist",
"esm": "tsc --module esnext && cpy dist/index.js dist --rename index.esm.js",
"cjs": "tsc --module commonjs",
"build": "npm run esm && npm run cjs",
"test": "xo",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=10"
},
"keywords": [
"airly",
"airly-api",
"api",
"pollution",
"air",
"smog",
"data",
"poland",
"powietrze",
"wrapper",
"simple",
"cloud",
"safe",
"PM10",
"PM25",
"PM1",
"npm"
],
"dependencies": {
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@akepinski/tsconfig": "0.0.2",
"@types/node-fetch": "^2.5.3",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"cpy-cli": "^2.0.0",
"del-cli": "^3.0.0",
"eslint-config-xo-typescript": "^0.19.0",
"typescript": "^3.7.2",
"xo": "*"
},
"sideEffects": false,
"xo": {
"extends": "xo-typescript",
"extensions": [
"ts"
],
"rules": {
"ava/no-ignored-test-files": "off"
},
"ignores": [
"examples",
"test.ts"
]
}
}