Skip to content

Latest commit

 

History

History
31 lines (27 loc) · 363 Bytes

npm.md

File metadata and controls

31 lines (27 loc) · 363 Bytes

NPM

package.json {#package}

{
  ...
  "dependencies": {
    ...
    "rapidjson": "git@github.com:Tencent/rapidjson.git"
  },
  ...
  "gypfile": true
}

binding.gyp {#binding}

{
  ...
  'targets': [
    {
      ...
      'include_dirs': [
        '<!(node -e \'require("rapidjson")\')'
      ]
    }
  ]
}