-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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
{
"name": "rollup-plugin-posthtml-template",
"version": "1.3.0",
"description": "Seamless integration between Rollup and PostHTML.",
"main": "dist/rollup-plugin-posthtml-template.cjs.js",
"module": "dist/rollup-plugin-posthtml-template.es.js",
"scripts": {
"test": "jest --coverage",
"coverage": "cat ./coverage/lcov.info | coveralls",
"build": "rollup -c",
"example": "cd example && rollup -c && lite-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vanilla-IceCream/rollup-plugin-posthtml-template.git"
},
"keywords": [
"Rollup",
"PostHTML"
],
"author": "Vanilla IceCream",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vanilla-IceCream/rollup-plugin-posthtml-template/issues"
},
"homepage": "https://github.com/Vanilla-IceCream/rollup-plugin-posthtml-template#readme",
"dependencies": {
"posthtml": "^0.11.3",
"rollup-pluginutils": "^2.0.1"
},
"devDependencies": {
"babel-jest": "^22.2.2",
"babel-preset-latest": "^6.24.1",
"coveralls": "^3.0.0",
"jest": "^22.2.2",
"lite-server": "^2.3.0",
"lodash": "^4.17.5",
"posthtml-include": "^1.1.0",
"posthtml-sugarml": "^1.0.0-alpha3",
"regenerator-runtime": "^0.11.0",
"rollup": "^0.56.1",
"rollup-plugin-buble": "^0.18.0"
},
"jest": {
"transform": {
"^.+\\.js?$": "babel-jest"
}
}
}