-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.06 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
{
"name": "caou",
"version": "0.4.0",
"description": "Caoutchouc compiler",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"pkg": "pkg -o caou --targets 'node10-linux,node10-macos,node10-win' index.js && pkg -o caou-pandoc-filter --targets 'node10-linux,node10-macos,node10-win' pandoc-filter.js"
},
"bin": {
"caou": "./index.js",
"caou-pandoc-filter": "./pandoc-filter.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/corollari/caoutchouc.git"
},
"files": [
"package.jsonn",
"index.js",
"pandoc-filter.js",
"lib/ASCIIMathTeXImg.js",
"man/caou.1"
],
"keywords": [
"latex"
],
"man": "./man/caou.1",
"author": "corollari",
"license": "MIT",
"bugs": {
"url": "https://github.com/corollari/caoutchouc/issues"
},
"homepage": "https://github.com/corollari/caoutchouc#readme",
"dependencies": {
"pandoc-filter-promisified": "^0.1.0"
},
"devDependencies": {
"pkg": "^4.4.8"
}
}