forked from msgpack/msgpack-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 4.14 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 4.14 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
102
103
{
"name": "@msgpack/msgpack",
"version": "1.9.3",
"description": "MessagePack for JavaScript/ECMA-262",
"author": "The MessagePack community",
"license": "ISC",
"main": "./dist/index.js",
"browser": "./dist.es5/msgpack.min.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_ENCODING=never MSGPACK_WASM=never mocha 'test/**/*.test.ts'",
"test:wasm": "npm run asbuild:production && TEXT_ENCODING=never MSGPACK_WASM=force mocha 'test/**/*.test.ts'",
"test:te": "TEXT_ENCODING=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:te": "npx nyc --no-clean npm run test:te",
"cover:clean": "rimraf .nyc_output coverage/",
"cover:report": "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": "latest",
"@types/base64-js": "latest",
"@types/mocha": "latest",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"assemblyscript": "github:AssemblyScript/assemblyscript#5269a6b9c4e14983c43671328257c156cdf1de8a",
"assert": "latest",
"core-js": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-prettier": "latest",
"ieee754": "latest",
"karma": "latest",
"karma-chrome-launcher": "latest",
"karma-cli": "latest",
"karma-firefox-launcher": "latest",
"karma-mocha": "latest",
"karma-sauce-launcher": "latest",
"karma-sourcemap-loader": "latest",
"karma-webpack": "latest",
"lodash": "latest",
"mocha": "latest",
"msgpack-test-js": "latest",
"npm-run-all": "latest",
"prettier": "latest",
"rimraf": "latest",
"ts-loader": "latest",
"ts-node": "latest",
"tsconfig-paths": "latest",
"typescript": "latest",
"web-streams-polyfill": "latest",
"webpack": "latest",
"webpack-cli": "latest"
},
"dependencies": {
"base64-js": "^1.3.0"
},
"files": [
"src/**/*.*",
"dist/**/*.*",
"dist.es5/**/*.*"
]
}