-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "hubl",
"version": "0.0.21",
"description": "Implementation of HubL using Nunjucks",
"main": "./index.js",
"module": "./index.esm.js",
"browser": "./index-browser.js",
"type": "module",
"files": [
"index.js",
"index.esm.js"
],
"scripts": {
"test": "jest",
"build": "rollup -c",
"push": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kieranja/hubl.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kieranja/hubl/issues"
},
"homepage": "https://github.com/kieranja/hubl#readme",
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/preset-env": "^7.12.16",
"@rollup/plugin-commonjs": "^17.1.0",
"bent": "^7.3.12",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"rollup": "^2.38.5"
},
"dependencies": {
"date-fns": "^2.17.0",
"nunjucks": "^3.2.2",
"strftime": "^0.10.0",
"text-clipper": "^2.1.0",
"trunc-html": "^1.1.2"
}
}