-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.74 KB
/
composer.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
{
"name": "pug-php/pug-assets",
"description": "Pug template assets manager",
"type": "library",
"require": {
"php": ">=5.4",
"pug-php/pug": "^2.0.2 || ^3.0.0",
"pug-php/pug-minify": "^1.1",
"pug-php/pug-filter-coffee-script": "^1.2",
"pug-php/pug-filter-less": "^1.0",
"pug-php/pug-filter-markdown": "^1.1",
"pug-php/pug-filter-react": "^1.0",
"pug-php/pug-filter-stylus": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^8.5.15"
},
"license": "MIT",
"authors": [
{
"name": "Kyle Katarn",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-0": {
"Pug": "src/"
}
},
"extra": {
"npm-confirm": {
"less": "It allows you to use less filter and link less files inside minify/concat tags.",
"clean-css": "It allows you to use minify option on CSS files and contents (recommended in production).",
"stylus": "It allows you to use stylus filter and link stylus files inside minify/concat tags.",
"coffee-script": "It allows you to use coffee-script filter and coffee-script files inside minify/concat tags.",
"babel-cli": "It allows you to use react/jsx filter and react/jsx files inside minify/concat tags.",
"babel-plugin-transform-react-jsx": "It allows you to use react/jsx filter and react/jsx files inside minify/concat tags.",
"babel-preset-es2015": "It allows you to use react/jsx filter and react/jsx files inside minify/concat tags.",
"babel-preset-react": "It allows you to use react/jsx filter and react/jsx files inside minify/concat tags.",
"uglify-js": "It allows you to use minify option on JS files and contents (recommended in production)."
}
}
}