-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
48 lines (48 loc) · 1.15 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
{
"name": "jade2php",
"description": "Unlock Jade for PHP! Convert Jade templates into raw PHP templates. CLI tool and JavaScript API. Test covered.",
"version": "1.2.3",
"license": "MIT",
"author": "Ivan Kravchenko",
"keywords": [
"jade",
"php",
"jade to php",
"jade2php",
"transpiler",
"converter"
],
"homepage": "https://github.com/SE7ENSKY/jade2php",
"bugs": "https://github.com/SE7ENSKY/jade2php/issues",
"repository": {
"type": "git",
"url": "git://github.com/SE7ENSKY/jade2php.git"
},
"directories": {
"lib": "./lib"
},
"main": "./lib/jade2php",
"bin": {
"jade2php": "./bin/jade2php"
},
"dependencies": {
"character-parser": "^1.2.0",
"commander": "^2.4.0",
"constantinople": "^4.0.1",
"jade": "1.7.0",
"js2php": "0.0.14",
"mkdirp": "^0.5.0",
"monocle": "^1.1.51",
"void-elements": "^1.0.0"
},
"devDependencies": {
"chai": "*",
"coffee-script": "*",
"mocha": "*",
"sync-exec": "^0.5.0"
},
"scripts": {
"test": "./node_modules/.bin/mocha --compilers coffee:coffee-script/register",
"prepublish": "coffee -o lib -c src/*.coffee"
}
}