-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 724 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 724 Bytes
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
{
"name": "objhash",
"main": "objhash",
"version": "1.0.5",
"description": "Retrieve a node.js object's V8 identity hash",
"repository": {
"type": "git",
"url": "git://github.com/lxe/node-objhash.git"
},
"author": {
"name": "Aleksey Smolenchuk",
"email": "lxe@lxe.co"
},
"engines": {
"node": ">=0.8.0"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/lxe/node-objhash/LICENSE"
}
],
"readmeFilename": "README.md",
"scripts": {
"install": "node-gyp rebuild",
"test": "npm build && mocha test"
},
"gypfile": true,
"devDependencies": {
"mocha": "^2.0.1"
},
"dependencies": {
"bindings": "^1.2.1",
"nan": "^2.2.0"
}
}