forked from dennisreimann/uiengine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 904 Bytes
/
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
{
"name": "@uiengine/adapter-handlebars",
"description": "UIengine template adapter for Handlebars.",
"license": "MIT",
"version": "0.19.3",
"author": "Dennis Reimann <[email protected]> (https://dennisreimann.de)",
"homepage": "https://github.com/dennisreimann/uiengine",
"bugs": "https://github.com/dennisreimann/uiengine",
"repository": "dennisreimann/uiengine",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=8.9.0"
},
"main": "./lib/index.js",
"files": [
"lib"
],
"keywords": [
"uiengine-adapter",
"uiengine",
"handlebars"
],
"devDependencies": {
"handlebars": "^4.0.0"
},
"peerDependencies": {
"@uiengine/core": "^0.19.0",
"handlebars": "^4.0.0"
},
"scripts": {
"start": "yarn run build -w",
"build": "rimraf lib && babel src --out-dir lib",
"lint": "eslint --ext .js src test"
}
}