-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.05 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.05 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
{
"name": "mikel",
"description": "Micro templating library with zero dependencies",
"version": "0.33.0",
"type": "module",
"author": {
"name": "Josemi Juanes",
"email": "hello@josemi.xyz"
},
"license": "MIT",
"repository": "https://github.com/jmjuanes/mikel",
"bugs": "https://github.com/jmjuanes/mikel/issues",
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"scripts": {
"release": "node ./scripts/release.js",
"test": "node test.js && yarn test:eval && yarn test:frontmatter && yarn test:markdown",
"test:eval": "node ./packages/mikel-eval/test.js",
"test:frontmatter": "node ./packages/mikel-frontmatter/test.js",
"test:markdown": "node ./packages/mikel-markdown/test.js"
},
"keywords": [
"template",
"templating"
],
"files": [
"README.md",
"LICENSE",
"index.js",
"index.d.ts"
]
}