forked from geckosio/typed-array-buffer-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.8 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
{
"name": "@geckos.io/typed-array-buffer-schema",
"version": "1.1.0",
"description": "A Schema based Object to Buffer converter",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"type": "commonjs",
"scripts": {
"test:ci": "npm i && npm run build && npm test && npm run bundle:tmp",
"start": "npm run dev",
"dev": "npm run build && npm-run-all --parallel dev:*",
"dev:tsc": "tsc --watch",
"dev:nodemon": "nodemon lib/dev.js --watch lib",
"build": "npm run clean && tsc",
"bundle": "webpack --config webpack.bundle.js",
"bundle:tmp": "webpack --config webpack.bundle.tmp.js",
"test": "jest --collectCoverage",
"clean": "rimraf lib",
"format": "prettier --write src/**/*.ts && prettier --write test/**/*.js",
"preReleaseHook": "prepublishOnly",
"prepublishOnly": "npm i && npm run build && npm test && npm run bundle"
},
"keywords": [
"typed",
"array",
"buffer",
"typedArray",
"arrayBuffer",
"serialize",
"serialization",
"schema",
"binary"
],
"author": "Yannick Deubel (https://github.com/yandeu)",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git://github.com/geckosio/typed-array-buffer-schema.git"
},
"bugs": {
"url": "https://github.com/geckosio/typed-array-buffer-schema/issues"
},
"homepage": "http://geckos.io",
"dependencies": {
"is-plain-object": "^5.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/lodash": "^4.14.177",
"@yandeu/prettier-config": "^0.0.2",
"jest": "^27.4.0",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.6",
"typescript": "^4.5.2",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1"
},
"funding": {
"url": "https://github.com/sponsors/yandeu"
}
}