forked from gd-com/utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.17 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@gd-com/utils",
"version": "4.0.1",
"description": "Serializer/deserializer utils for godot engine",
"main": "src/index.js",
"scripts": {
"lint": "./node_modules/.bin/standard lib/**/*.js example/**/*.js test/**/*.js",
"test": "./node_modules/.bin/mocha --colors ./test/*.spec.js",
"test:watch": "./node_modules/.bin/mocha --colors -w ./test/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gd-com/utils.git"
},
"bugs": {
"url": "https://github.com/gd-com/utils/issues"
},
"homepage": "https://github.com/gd-com/utils#readme",
"devDependencies": {
"chai": "4.2.0",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"standard": "^14.3.1"
},
"keywords": [
"library",
"godot",
"nodejs",
"tcp",
"udp",
"socket",
"websocket",
"helper"
],
"author": "Tilican",
"license": "MIT",
"contributors": [
"Xavier Sellier <[email protected]>"
],
"standard": {
"globals": [
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect"
]
},
"dependencies": {
"long": "^4.0.0"
}
}