forked from aMarCruz/rollup-plugin-pug
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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": "rollup-plugin-pug-html",
"version": "0.0.2",
"description": "Rollup plugin that transforms pug (jade) templates in es6 modules.",
"main": "dist/rollup-plugin-pug.cjs.js",
"jsnext:main": "dist/rollup-plugin-pug.es.js",
"files": [
"dist/",
"README.md"
],
"scripts": {
"build": "npm run build:cjs && npm run build:es",
"build:cjs": "rollup -c -f cjs -o ./dist/rollup-plugin-pug.cjs.js",
"build:es": "rollup -c -f es -o ./dist/rollup-plugin-pug.es.js",
"test": "npm run build && mocha ./test/test.js",
"prepublish": "npm run lint && npm run build && npm test",
"lint": "eslint src"
},
"keywords": [
"rollup",
"rollup-plugin",
"javascript",
"es6",
"jade",
"pug"
],
"author": "aMarCruz",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tycho01/rollup-plugin-pug-html.git"
},
"bugs": {
"url": "https://github.com/tycho01/rollup-plugin-pug-html/issues"
},
"homepage": "https://github.com/tycho01/rollup-plugin-pug-html#readme",
"dependencies": {
"pug": "^2.0.0-beta6",
"rollup-pluginutils": "^1.5.1"
},
"devDependencies": {
"eslint": "^3.3.1",
"mocha": "^3.0.2",
"pug-runtime": "^2.0.2",
"rollup": "^0.34.10"
}
}