-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1000 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 1000 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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "seed-node-native-module",
"description": "This is a seed project to build Node.js native module",
"version": "0.0.1",
"private": true,
"author": "Nicola Del Gobbo <nicoladelgobbo@gmail.com>",
"keywords": [
"c++",
"native",
"module",
"nodejs",
"addon",
"v8"
],
"license": "Apache-2.0",
"scripts": {
"test": "node node_modules/jasmine/bin/jasmine.js JASMINE_CONFIG_PATH=test/jasmine.json",
"build": "node-gyp rebuild"
},
"engines": {
"node": ">= 0.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/NickNaso/seed-node-native-module.git"
},
"bugs": {
"url": "https://github.com/NickNaso/seed-node-native-module/issues"
},
"main": "index.js",
"devDependencies": {
"jasmine": "^2.4.1"
},
"gypfile": true,
"dependencies": {
"bindings": "^1.2.1",
"nan": "^2.4.0"
},
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"index.js",
"lib/",
"src/"
]
}