-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.74 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.74 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
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
{
"name": "soaring-symbols",
"version": "0.1.0-alpha.8",
"description": "A curated collection of airline branding assets — logos, icons, and tail designs in SVG format.",
"license": "MIT",
"author": {
"name": "Anh Thang Bui",
"email": "buianhthang89@gmail.com",
"url": "https://anhthang.org"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./utils": {
"import": "./dist/utils/index.js",
"require": "./dist/utils/index.js"
},
"./package.json": "./package.json",
"./assets/*": "./dist/assets/*"
},
"homepage": "https://github.com/anhthang/soaring-symbols",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/anhthang/soaring-symbols.git"
},
"bugs": {
"url": "https://github.com/anhthang/soaring-symbols/issues"
},
"keywords": [
"aviation",
"airline",
"logo",
"icon",
"soaring",
"symbols",
"svg",
"aircraft",
"aviation",
"flight",
"travel"
],
"files": [
"dist/",
"AIRLINES.md",
"API.md",
"LICENSE",
"README.md"
],
"scripts": {
"clean": "rm -rf dist",
"prebuild": "npm run lint:svg && npm run generate",
"build": "npm run clean && node scripts/build.js",
"prepublishOnly": "npm run build",
"test": "npm run build && node scripts/test.js",
"lint:svg": "node scripts/lint-svg.js",
"generate": "node scripts/generate.js"
},
"dependencies": {
"slugify": "^1.6.6"
},
"devDependencies": {
"@types/jsdom": "^27.0.0",
"jsdom": "^27.0.1",
"lodash.sortby": "^4.7.0"
}
}