forked from edge-js/edge-iconify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 2.65 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "edge-iconify",
"version": "1.0.1",
"description": "Iconify provider for Edge template engine",
"main": "./build/index.js",
"files": [
"build/src",
"build/index.js",
"build/index.d.ts"
],
"scripts": {
"pretest": "npm run lint",
"test": "node --require=@adonisjs/require-ts/build/register bin/test.ts",
"clean": "del-cli build",
"compile": "npm run lint && npm run clean && tsc",
"build": "npm run compile",
"release": "np --message=\"chore(release): %s\"",
"version": "npm run build",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext=.ts",
"format": "prettier --write .",
"sync-labels": "github-label-sync --labels .github/labels.json edge-iconify"
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"keywords": [],
"author": "virk",
"license": "MIT",
"devDependencies": {
"@adonisjs/require-ts": "^2.0.12",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@iconify-json/mdi": "^1.1.26",
"@japa/assert": "^1.3.4",
"@japa/run-failed-tests": "^1.0.7",
"@japa/runner": "^2.0.9",
"@japa/spec-reporter": "^1.1.12",
"@types/node": "^18.0.0",
"del-cli": "^4.0.1",
"edge.js": "^5.3.7",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-adonis": "^3.0.2",
"eslint-plugin-prettier": "^4.0.0",
"github-label-sync": "^2.2.0",
"husky": "^8.0.1",
"np": "^7.6.1",
"prettier": "^2.7.1",
"typescript": "^4.7.3"
},
"eslintConfig": {
"extends": [
"plugin:adonis/typescriptPackage",
"prettier"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"endOfLine": "auto"
}
]
}
},
"eslintIgnore": [
"build"
],
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"useTabs": false,
"quoteProps": "consistent",
"bracketSpacing": true,
"arrowParens": "always",
"printWidth": 100
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"np": {
"message": "chore(release): %s",
"tag": "latest",
"branch": "main",
"anyBranch": false
},
"dependencies": {
"@iconify/iconify": "^2.2.1",
"stringify-attributes": "^2.0.0"
},
"types": "./build/index.d.ts",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edge-js/edge-iconify.git"
},
"bugs": {
"url": "https://github.com/edge-js/edge-iconify/issues"
},
"homepage": "https://github.com/edge-js/edge-iconify#readme"
}