This repository was archived by the owner on Jan 22, 2025. It is now read-only.
forked from msgpack/msgpack-javascript
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 4.07 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 4.07 KB
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
{
"name": "@msgpack/msgpack",
"version": "1.3.2",
"description": "MessagePack for JavaScript/ECMA-262",
"author": "The MessagePack community",
"license": "ISC",
"main": "./dist/index.js",
"browser": "./dist.es5/msgpack.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "npm publish --dry-run",
"prepare": "npm run clean && npm run asbuild:production && tsc -p tsconfig.dist.json && webpack",
"prepublishOnly": "run-p 'test:dist:*' && npm run test:browser",
"clean": "rimraf build dist dist.*",
"test": "mocha 'test/**/*.test.ts'",
"test:purejs": "TEXT_DECODER=never MSGPACK_WASM=never mocha 'test/**/*.test.ts'",
"test:wasm": "npm run asbuild:production && TEXT_DECODER=never MSGPACK_WASM=force mocha 'test/**/*.test.ts'",
"test:td": "TEXT_DECODER=force mocha 'test/**/*.test.ts'",
"test:dist:purejs": "TS_NODE_PROJECT=tsconfig.test-dist-es5-purejs.json npm run test:purejs -- --reporter=dot",
"test:dist:wasm": "TS_NODE_PROJECT=tsconfig.test-dist-es5-wasm.json npm run test:wasm -- --reporter=dot",
"test:cover": "npm run cover:clean && npm-run-all 'test:cover:*' && npm run cover:report",
"test:cover:purejs": "npx nyc --no-clean npm run test:purejs",
"test:cover:wasm": "npx nyc --no-clean npm run test:wasm",
"test:cover:td": "npx nyc --no-clean npm run test:td",
"cover:clean": "rimraf .nyc_output coverage/",
"cover:report": "npx nyc report --reporter=text-summary --reporter=html --reporter=json",
"test:browser": "karma start --single-run",
"test:browser:firefox": "karma start --single-run --browsers FirefoxHeadless",
"test:browser:chrome": "karma start --single-run --browsers ChromeHeadless",
"test:watch:browser": "karma start --browsers ChromeHeadless,FirefoxHeadless",
"test:watch:nodejs": "mocha -w 'test/**/*.test.ts'",
"lint": "eslint --ext .ts src test",
"lint:fix": "eslint --fix --ext .ts src test && npm run format",
"lint:print-config": "eslint --print-config .eslintrc.js",
"format": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"asbuild:development": "asc assembly/index.ts -b dist/wasm/msgpack.wasm -t dist/wasm/msgpack.wat --sourceMap --validate --debug && ts-node tools/pack-wasm.ts",
"asbuild:production": "asc assembly/index.ts -b dist/wasm/msgpack.wasm -t dist/wasm/msgpack.wat --sourceMap --validate -O3 && ts-node tools/pack-wasm.ts",
"update-dependencies": "rimraf node_modules/ package-lock.json && npm install && npm dedupe"
},
"homepage": "https://msgpack.org/",
"repository": {
"type": "git",
"url": "https://github.com/msgpack/msgpack-javascript.git"
},
"bugs": {
"url": "https://github.com/msgpack/msgpack-javascript/issues"
},
"keywords": [
"msgpack",
"MessagePack",
"serialization",
"universal"
],
"engines": {
"node": ">= 10"
},
"devDependencies": {
"@bitjourney/check-es-version-webpack-plugin": "^1.0.2",
"@types/base64-js": "^1.2.5",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.4",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"assemblyscript": "github:AssemblyScript/assemblyscript#5269a6b9c4e14983c43671328257c156cdf1de8a",
"assert": "^2.0.0",
"core-js": "^3.1.3",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-prettier": "^3.1.0",
"ieee754": "^1.1.13",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^2.0.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-sauce-launcher": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"lodash": "^4.17.11",
"mocha": "^6.1.4",
"msgpack-test-js": "^1.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.1",
"rimraf": "^2.6.3",
"ts-loader": "^6.0.2",
"ts-node": "^8.2.0",
"tsconfig-paths": "^3.8.0",
"typescript": "^3.5.1",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1"
},
"dependencies": {
"base64-js": "^1.3.0"
},
"files": [
"src/**/*.*",
"dist/**/*.*",
"dist.es5/**/*.*"
]
}