forked from bengsfort/rollup-plugin-generate-html-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.71 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
{
"name": "rollup-plugin-generate-html-template",
"version": "1.1.0",
"description": "Rollup plugin for automatically injecting a script tag with the final bundle into an html file.",
"main": "dist/rollup-plugin-generate-html-template.js",
"module": "dist/rollup-plugin-generate-html-template.module.js",
"jsnext:main": "dist/rollup-plugin-generate-html-template.module.js",
"files": [
"dist",
"src",
"README.md"
],
"scripts": {
"test": "npm run lint && mocha ./test/tests.js --require babel-core/register",
"pretest": "npm run build",
"build": "npm run build:cjs && npm run build:module",
"build:cjs": "rollup -c -o ./dist/rollup-plugin-generate-html-template.js -f cjs",
"build:module": "rollup -c -o ./dist/rollup-plugin-generate-html-template.module.js -f es",
"prebuild": "rimraf dist/*",
"lint": "eslint ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bengsfort/rollup-plugin-generate-html-template"
},
"keywords": [
"rollup-plugin",
"bundle",
"injection",
"rollup",
"modules",
"html",
"template"
],
"author": "Matt Bengston <[email protected]> (https://bengsfort.github.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bengsfort/rollup-plugin-generate-html-template/issues"
},
"homepage": "https://github.com/bengsfort/rollup-plugin-generate-html-template#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.19.0",
"eslint-config-google": "^0.9.1",
"mocha": "^5.0.4",
"rimraf": "^2.6.2",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.3"
},
"peerDependencies": {
"rollup": ">=0.50.0"
}
}