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
80 lines (80 loc) · 2.96 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.96 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
{
"name": "@msgpack/msgpack",
"version": "1.0.1",
"description": "MessagePack for JavaScript",
"main": "./dist/index.js",
"browser": "./dist.es5/msgpack.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "npm publish --dry-run",
"prepare": "rm -rf dist dist.* ; tsc -p tsconfig.dist.json && webpack",
"prepublishOnly": "TEST_DIST=true npm run test",
"clean": "rm -rf build dist dist.*",
"test": "mocha 'test/**/*.test.ts'",
"test:cover": "npx nyc mocha 'test/**/*.test.ts'",
"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'",
"profile:encode": "rm -f isolate-*.log ; node --prof --require ts-node/register -e 'require(\"./benchmark/profile-encode\")' && node --prof-process --preprocess -j isolate-*.log | npx flamebearer",
"profile:decode": "rm -f isolate-*.log ; node --prof --require ts-node/register -e 'require(\"./benchmark/profile-decode\")' && node --prof-process --preprocess -j isolate-*.log | npx flamebearer",
"benchmark": "ts-node benchmark/benchmark-from-msgpack-lite.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/msgpack/msgpack-javascript.git"
},
"keywords": [
"msgpack",
"MessagePack",
"serialization"
],
"author": "The MessagePack community",
"license": "ISC",
"bugs": {
"url": "https://github.com/msgpack/msgpack-javascript/issues"
},
"homepage": "https://msgpack.org/",
"devDependencies": {
"@bitjourney/check-es-version-webpack-plugin": "^1.0.2",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.10",
"@typescript-eslint/eslint-plugin": "^1.8.0",
"@typescript-eslint/parser": "^1.8.0",
"assert": "^2.0.0",
"core-js": "^3.0.1",
"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-mocha-reporter": "^2.2.5",
"karma-sauce-launcher": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"mocha": "^6.1.4",
"msgpack-lite": "^0.1.26",
"msgpack-test-js": "^1.0.0",
"prettier": "^1.17.0",
"ts-loader": "^5.4.5",
"ts-node": "^8.1.0",
"typescript": "^3.4.5",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1"
},
"dependencies": {},
"files": [
"src/**/*.*",
"dist/**/*.*",
"dist.es5/**/*.*"
]
}