-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.65 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
{
"name": "hyperstache",
"version": "0.5.2",
"description": "Handlebars to template literals transformer.",
"main": "dist/hyperstache.js",
"module": "module/hyperstache.js",
"scripts": {
"build": "rollup -c --silent",
"watch": "rollup -wc --silent",
"test": "nyc --reporter=lcov --reporter=text tape -r esm test/test.js | tap-spec",
"test:watch": "chokidar '**/(src|test)/**/*.js' -c 'yarn test' --initial --silent",
"coverage": "codecov"
},
"files": [
"module",
"dist",
"src",
"mini",
"runtime",
"runtime-mini"
],
"keywords": [
"dom",
"handlebars",
"mustache",
"templates",
"templateliterals"
],
"author": "Wesley Luyten <me@wesleyluyten.com> (https://wesleyluyten.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/luwes/hyperstache/issues"
},
"homepage": "https://github.com/luwes/hyperstache#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/plugin-transform-object-assign": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"chokidar-cli": "^2.1.0",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"eslint-plugin-jsdoc": "^24.0.0",
"esm": "^3.2.25",
"faucet": "^0.0.1",
"htm": "^3.0.4",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"rollup": "^2.7.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-size": "^0.2.2",
"rollup-plugin-terser": "^5.3.0",
"tap-spec": "^5.0.0",
"tape": "^5.0.0",
"underscore": "^1.10.2"
}
}