-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 947 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
{
"name": "kelbas",
"version": "2.0.4",
"description": "Super small JavaScript `template-string` -> DOM creating library.",
"main": "./build/kelbas.esm.js",
"scripts": {
"build": "rollup -c rollup.config.js",
"format": "find ./index.js | xargs prettier --write",
"test": "tape -r 'esm' -r './tests/setup' './tests/**/*.test.js' | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tonis2/kelbas.git"
},
"keywords": [
"webcomponents",
"template-strings",
"custom-elements",
"es6"
],
"author": "tonis",
"license": "ISC",
"bugs": {
"url": "https://github.com/tonis2/kelbas/issues"
},
"homepage": "https://github.com/tonis2/kelbas#readme",
"devDependencies": {
"browser-env": "^3.2.6",
"esm": "^3.0.82",
"prettier": "1.14.3",
"rollup": "^0.56.2",
"rollup-plugin-uglify": "^3.0.0",
"tap-spec": "^5.0.0",
"tape": "latest"
}
}