-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
77 lines (77 loc) · 2.1 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
77
{
"name": "just-handlebars-helpers",
"version": "1.0.19",
"description": "A package with common helpers for Handlebars",
"main": "index.js",
"license": "MIT",
"repository": "[email protected]/leapfrogtechnology/just-handlebars-helpers.git",
"files": [
"lib",
"dist"
],
"author": "Kabir Baidhya <[email protected]>",
"contributors": [
"Saugat Acharya <[email protected]>",
"Sanjeev Kumar Pandit <[email protected]>",
"Suman Gurung <[email protected]>",
"Deepak Pandey <[email protected]>"
],
"scripts": {
"test": "karma start --single-run",
"lint": "eslint --fix src tests gulpfile.js karma.conf.js index.js",
"start": "karma start",
"clean": "rimraf dist/ lib/",
"build": "yarn clean && gulp",
"bump": "./release.sh bump",
"changelog": "./release.sh changelog"
},
"keywords": [
"handlebars",
"helpers",
"just-handlebars",
"just-handlebars-helpers",
"handlebars-helpers",
"mustache",
"template",
"templating",
"html"
],
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babelify": "^8.0.0",
"browserify": "^16.2.2",
"browserify-istanbul": "^2.0.0",
"browserify-shimify": "0.1.0-0",
"currencyformatter.js": "^1.0.5",
"eslint": "^8.7.0",
"eslint-config-leapfrog": "^2.0.1",
"faker": "^4.1.0",
"gulp": "^4.0.2",
"gulp-babel": "^7.0.1",
"gulp-eslint": "^6.0.0",
"gulp-rename": "^1.2.3",
"gulp-uglify": "^3.0.2",
"handlebars": "^4.0.11",
"isparta": "^4.1.1",
"jasmine-core": "^2.4.1",
"karma": "^4.4.1",
"karma-browserify": "^5.3.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^1.1.2",
"karma-spec-reporter": "0.0.32",
"moment": "^2.29.4",
"puppeteer": "^1.4.0",
"rimraf": "^2.6.2",
"sprintf-js": "^1.1.1",
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.11.0"
},
"peerDependencies": {
"currencyformatter.js": ">= 1.0.4 < 2",
"handlebars": ">= 3.*",
"moment": ">= 2.22.0 < 3",
"sprintf-js": ">= 1.1.1 < 2"
}
}