-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.73 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
{
"name": "hssp",
"version": "5.0.0",
"engines": {
"node": ">=16.0.0"
},
"description": "Create, edit and read HSSP files in pure JavaScript",
"main": "dist/hssp.js",
"files": [
"dist"
],
"scripts": {
"test": "npm run samples && mocha",
"lint": "echo \"TODO: Set up ESLint\"",
"format": "prettier . -w",
"fullcoverage": "nyc check-coverage",
"coverage": "nyc mocha",
"node-build": "rollup --config rollup.config.mjs",
"node-min": "terser dist/hssp.js -o dist/hssp.min.js",
"browser-build": "webpack --config webpack.config.js",
"browser-min": "terser dist/hssp-web.js -o dist/hssp-web.min.js",
"license": "node ./scripts/add-license.js",
"samples": "node ./scripts/generate-samples.js",
"build": "npm run node-build && npm run node-min && npm run browser-build && npm run browser-min && npm run license",
"check": "npm run lint && npm run test && npm run coverage && npm run fullcoverage"
},
"repository": "HSSPfile/js",
"keywords": [
"HSSP",
"HugeSizeSupportingPackage",
"Huge",
"Package"
],
"author": "HSSP",
"license": "MIT",
"bugs": {
"url": "https://github.com/acridotheres/hssp-js/issues"
},
"homepage": "https://github.com/acridotheres/hssp-js#README",
"dependencies": {
"murmurhash-js": "^1.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"globals": "^15.9.0",
"lzma": "^2.3.2",
"mocha": "^10.2.0",
"nyc": "^17.0.0",
"pako": "^2.1.0",
"path-browserify": "^1.0.1",
"prettier": "^3.1.0",
"rollup": "^4.9.6",
"stream-browserify": "^3.0.0",
"terser": "^5.27.0",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4"
}
}