-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 952 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 952 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
{
"name": "cpp-eventemitter",
"version": "0.1.0",
"description": "A Native Nan version of EventEmitter that allows C++ and wrapped C to emit to javascript listeners as events happen.",
"main": "include_dirs.js",
"scripts": {
"test": "eslint . && cd test && make clean && make alltests",
"jstests": "cd test && node-gyp configure && node-gyp rebuild && mocha ./js/*.js",
"lint": "eslint ."
},
"keywords": [
"nan",
"native",
"c++",
"cpp",
"cplusplus",
"eventemitter",
"event",
"emitter"
],
"author": "Jamie Beverly",
"license": "MIT",
"devDependencies": {
"@scoop/eslint-config-scoop": "^3.1.0",
"catch": "^1.0.48",
"code": "^4.1.0",
"eslint": "^3.19.0",
"eslint-plugin-dependencies": "^2.4.0",
"leakage": "^0.4.0",
"mocha": "^3.4.2",
"node-gyp": "^3.6.2",
"path": "^0.12.7"
},
"dependencies": {
"bindings": "^1.2.1",
"nan": "^2.6.2"
}
}