-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
147 lines (147 loc) · 3.36 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "serialism",
"version": "1.0.2",
"description": "Serialize complex JavaScript objects or ES6 classes with circular dependencies natively.",
"main": "dist/serialism.js",
"types": "dist/serialism.d.ts",
"files": [
"README.md",
"CHANGELOG.md",
"binding.gyp",
"dist",
"src/native.cxx"
],
"readme": "README.md",
"author": {
"email": "[email protected]",
"name": "Abdullah Ali",
"url": "https://github.com/voodooattack"
},
"license": "MIT",
"engines": {
"node": ">= 8.13.0"
},
"repository": {
"type": "git",
"url": "https://github.com/voodooattack/serialism.git"
},
"scripts": {
"clean": "rimraf dist/ build/",
"prepublish": "npm run build && npm run typedoc && npm run test",
"typedoc": "typedoc --out docs --target es6 --theme minimal --mode file src",
"lint": "tslint -c tslint.json --project .",
"pretest": "npm run clean && npm run lint && npm run build",
"test": "nyc mocha --expose-gc --ui mocha-typescript test/test_**.ts",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"watch": "mocha-typescript-watch",
"prepare": "npm run lint && tsc",
"install": "node-gyp configure rebuild",
"build": "tsc && node-gyp configure rebuild",
"debug-build": "tsc && node-gyp --debug configure rebuild",
"commit": "npm run lint && npm run test && npx git-cz",
"semantic-release": "semantic-release"
},
"keywords": [
"serialization",
"serialize",
"deserialization",
"deserialize",
"encode",
"decode",
"memory",
"binary",
"native",
"stream",
"binary",
"typescript",
"javascript",
"object",
"flatten",
"buffer",
"packet",
"bson",
"json",
"protocol",
"wire",
"circular",
"cyclic",
"addon"
],
"gypfile": true,
"dependencies": {
"bindings": "^1.3.0",
"nan": "^2.11.1"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.1",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.5",
"@semantic-release/npm": "^5.1.1",
"@semantic-release/release-notes-generator": "^7.1.4",
"@types/bindings": "^1.3.0",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.10",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"mocha": "^5.2.0",
"mocha-typescript": "^1.1.17",
"nyc": "^13.1.0",
"rimraf": "^2.6.2",
"semantic-release": "^15.12.1",
"source-map-support": "^0.5.9",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typedoc": "^0.15.3",
"typescript": "^3.1.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"check-coverage": true,
"per-file": true,
"include": [
"src/**.ts"
],
"require": [
"source-map-support/register",
"ts-node/register/transpile-only"
],
"exclude": [
"test/**.ts",
"**/*.d.ts"
],
"reporter": [
"lcov",
"text-summary"
],
"extension": [
".js",
".ts"
],
"watermarks": {
"lines": [
80,
95
],
"functions": [
80,
95
],
"branches": [
80,
95
],
"statements": [
80,
95
]
},
"cache": true,
"all": true
}
}