forked from shawnbot/meta-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 886 Bytes
/
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
{
"name": "meta-template",
"version": "0.1.0",
"description": "Transform Nunjucks templates into other formats",
"main": "index.js",
"scripts": {
"test": "mocha test/**/*.spec.js",
"build": "browserify src/bundle.js --debug -t [ babelify --presets [ es2015 ] ] | uglifyjs --source-map-inline | exorcist dist/meta-template.js.map > dist/meta-template.js"
},
"keywords": [
"template",
"nunjucks",
"transform"
],
"author": "Shawn Allen (https://github.com/shawnbot)",
"license": "CC0-1.0",
"dependencies": {
"concat-stream": "^1.5.2",
"invariant": "^2.2.1",
"nunjucks": "^2.5.2",
"object-assign": "^4.1.0",
"yargs": "^6.3.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"exorcist": "^0.4.0",
"mocha": "^3.1.2",
"uglify-js": "^2.7.4"
}
}