Merge pull request #631 from milkandsour/master

npm compliant package.json
This commit is contained in:
Milo Yip 2016-05-11 01:34:39 -05:00
commit 2a3fbdaf5c
2 changed files with 27 additions and 0 deletions

2
include_dirs.js Normal file
View File

@ -0,0 +1,2 @@
var path = require('path');
console.log(path.join(path.relative('.', __dirname), 'include'));

25
package.json Normal file
View File

@ -0,0 +1,25 @@
{
"name": "rapidjson",
"version": "1.0.3",
"description": "![](doc/logo/rapidjson.png)",
"main": "index.js",
"directories": {
"doc": "doc",
"example": "example",
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miloyip/rapidjson.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/miloyip/rapidjson/issues"
},
"homepage": "https://github.com/miloyip/rapidjson#readme",
"main": "include_dirs.js"
}