-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 1 KB
/
package.json
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": "wscpp",
"version": "1.0.0",
"description": "Node.js native websocket addon",
"license": "Apache-2.0",
"repository": "bmwcarit/wscpp",
"gypfile": true,
"main": "main.js",
"dependencies": {
"bindings": "1.2.1",
"nan": "2.6.2"
},
"devDependencies": {
"@sane/promisify-listen": "1.0.1",
"ava": "0.18.2",
"cartesian-product": "2.1.2",
"get-port": "3.0.0",
"gulp": "3.9.1",
"gulp-clang-format": "1.0.23",
"segfault-handler": "1.0.0",
"sinon": "4.1.2",
"ws": "2.2.2"
},
"napa": {
"concurrentqueue": "cameron314/concurrentqueue#5170da7fd04335da6d4e1d2ed7209a539176e589",
"websocketpp": "zaphoyd/websocketpp#19cad9925f83d15d7487c16f0491f4741ec9f674"
},
"scripts": {
"preinstall": "npm install [email protected] [email protected]",
"install": "napa && node-gyp rebuild",
"format": "gulp format",
"gen-test-certs": "gulp gen-test-certs",
"test": "ava -s 'test/js/*.test.js'",
"rebuild-tests": "node-gyp rebuild --directory test"
}
}