-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
42 lines (42 loc) · 964 Bytes
/
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
{
"name": "bsonfy",
"version": "1.0.2",
"author": "Marco Paland",
"license": "MIT",
"description": "Ultrafast BSON serializer/parser",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p ./src",
"pretest": "tsc -p ./test",
"test": "mocha ./test/out/test/**/*_test.js",
"dev": "lite-server"
},
"dependencies": {},
"devDependencies": {
"typescript": "latest",
"lite-server": "latest",
"ts-node": "^4.1.0",
"chai": "^4.1.2",
"mocha": "^5.0.0",
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.47",
"@types/node": "^9.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mpaland/bsonfy.git"
},
"keywords": [
"BSON",
"Parser",
"Serializer",
"Deserializer",
"JSON",
"Typescript"
],
"bugs": {
"url": "https://github.com/mpaland/bsonfy/issues"
},
"homepage": "https://github.com/mpaland/bsonfy#readme"
}