-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 975 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 975 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": "messagepack",
"version": "1.1.12",
"description": "A MessagePack implementation for JavaScript.",
"main": "dist/messagepack.cjs.js",
"module": "dist/messagepack.es.js",
"jsnext:main": "dist/messagepack.es.js",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"README.md"
],
"keywords": [
"msgpack",
"messagepack",
"serialization"
],
"scripts": {
"prebuild": "rm -rf dist/*",
"build": "rollup -c rollup.lib.js",
"pretest": "rm -rf build/*",
"test": "rollup -c rollup.test.js && testsome build/tests.js",
"prepublishOnly": "npm run build && npm run test"
},
"author": "mprot",
"license": "MIT",
"homepage": "https://github.com/mprot/msgpack-js",
"repository": {
"type": "git",
"url": "git+https://github.com/mprot/msgpack-js.git"
},
"devDependencies": {
"@types/node": "^17.0.1",
"rollup": "^2.61.1",
"rollup-plugin-tsc": "^1.1.16",
"testsome": "^1.0.3"
}
}