-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
25 lines (25 loc) · 909 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
{
"version": "0.0.16",
"name": "multimarkdown",
"author": "Sam Nguyen <samxnguyen@gmail.com>",
"homepage": "https://github.com/dtjm/node-multimarkdown",
"main": "build/Release/multimarkdown.node",
"files": [
"build/Release",
"README.md",
"Makefile",
"multimarkdown.cc",
"binding.gyp"
],
"scripts": {
"preinstall": "node-gyp configure && mkdir -p deps && cd deps && curl \"https://codeload.github.com/fletcher/peg-multimarkdown/tar.gz/3.7\" | tar zxvf - && mv peg-multimarkdown-* peg-multimarkdown && cd peg-multimarkdown && CFLAGS=\"-fPIC -Wall -O3 -include GLibFacade.h -I ./ -D MD_USE_GET_OPT=1 -D_GNU_SOURCE\" make && cd ../../ && node-gyp build",
"prepublish": "node test"
},
"repository": {
"type": "git",
"url": "https://github.com/dtjm/node-multimarkdown.git"
},
"bugs": {
"url": "https://github.com/dtjm/node-multimarkdown/issues"
}
}