-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.51 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
{
"name": "@quitsmx/make-sprites",
"version": "0.1.2",
"description": "Make a sprites file from selected icons",
"main": "./index.js",
"author": "quits <[email protected]>",
"license": "MIT",
"files": [
"index.*",
"data/",
"dist/"
],
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/quitsmx/make-sprites/issues",
"email": "[email protected]"
},
"repository": {
"url": "https://github.com/quitsmx/make-sprites.git",
"type": "git"
},
"engines": {
"node": ">=12.0.0",
"yarn": "^1.22.10"
},
"browserslist": [
">= 0.5% in MX and not dead",
"last 3 and_chr versions",
"last 8 chrome versions",
"last 8 opera versions",
"last 8 firefox versions",
"last 8 edge versions",
"samsung >= 12.0",
"safari >= 12.1",
"ios_saf >= 12.2",
"not edge < 79"
],
"scripts": {
"build": "rimraf ./dist/* && tsc --pretty -p ./tsconfig.dist.json",
"prepack": "ts-node ./scripts/prepare.ts && npm run build",
"test": "node ./test/index.js"
},
"dependencies": {
"fast-xml-parser": "~3.18.0",
"jsonc-require": "~1.0.0"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "~5.15.2",
"@quitsmx/eslint-config": "~0.4.0",
"@types/node": "~14.14.31",
"@types/prettier": "~2.2.1",
"eslint": "~7.20.0",
"prettier": "github:aMarCruz/prettier#2.2.1",
"rimraf": "~3.0.2",
"ts-node": "~9.1.1",
"typescript": "~4.1.5",
"web-icons": "github:quitsmx/web-icons#0.2.4"
}
}