-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.21 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
{
"name": "infuse.host",
"version": "0.3.1",
"description": "Infuse your HTML with dynamic content.",
"license": "MIT",
"author": "Sergio Alcantara (https://github.com/serg-io)",
"homepage": "https://infuse.host/",
"repository": {
"type": "git",
"url": "git+https://github.com/serg-io/infuse.host.git"
},
"keywords": [
"infuse",
"HTML",
"template",
"templating",
"engine",
"template-engine",
"custom-elements",
"customized-built-in-elements",
"custom-tags",
"web-components",
"shadow-dom",
"data-binding",
"framework",
"frontend",
"front-end",
"DOM",
"SPA",
"PWA",
"webapp",
"web-apps",
"web-applications"
],
"bugs": {
"url": "https://github.com/serg-io/infuse.host/issues"
},
"main": "src/infuse.js",
"files": [
"lib",
"src"
],
"scripts": {
"docs": "npm-run-all docs-*",
"docs-css-compile": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 docs/style.scss docs/dist/style.css",
"docs-css-minify": "cleancss --source-map --source-map-inline-sources --output docs/dist/style.min.css docs/dist/style.css",
"docs-html": "pandoc -s --quiet -f markdown-smart -t html5 --toc --highlight-style=kate --template=docs/template.html --css=docs/dist/style.min.css --metadata-file=package.json -o index.html docs/index.md",
"lint": "eslint src/*.js",
"postversion": "git push && git push --tags && npm publish",
"prepare": "rm -rf lib && npm run transpile",
"preversion": "npm-run-all lint test",
"test": "jest",
"transpile": "babel src --out-dir lib --ignore *.test.js",
"version": "npm run docs && git add index.html docs/dist/"
},
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"domino": "^2.1.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-preset-env": "^1.7.0",
"bootstrap": "^4.3.1",
"clean-css-cli": "^4.2.1",
"eslint": "^5.14.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"jest": "^24.1.0",
"merge": "^1.2.1",
"node-sass": "^4.11.0",
"npm-run-all": "^4.1.5"
}
}