-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.52 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
64
65
66
67
68
69
70
71
72
{
"name": "run-length-bitmap",
"version": "1.2.0",
"description": "Useful operations for bitmap indexes and run-length encoded bitmaps.",
"keywords": [
"bitmap",
"bitmap-index",
"bitmap-indexes",
"index",
"indexes",
"run-length",
"run-length-encoding",
"encoding",
"run-length-bitmap"
],
"author": "Anton Bagdatyev (Tonix)",
"license": "MIT",
"main": "dist/run-length-bitmap.js",
"module": "dist/es6/index.js",
"repository": {
"type": "git",
"url": "https://github.com/tonix-tuft/run-length-bitmap.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "WEBPACK_ENV=watch webpack --progress --color --watch",
"mkdir-build": "mkdir -p ./dist/es6",
"clear-build": "find ./dist ! -name '.gitignore' -type f -exec rm -f {} +",
"dev-build": "WEBPACK_ENV=watch webpack --progress --color",
"build": "WEBPACK_ENV=build webpack",
"publish-git": "npm publish && git push && git push --tags",
"build-all": "npm run mkdir-build && npm run clear-build && npm run build && npm run dev-build && npm run build-module",
"publish-patch": "npm run build-all && npm version patch && npm run publish-git",
"publish-minor": "npm run build-all && npm version minor && npm run publish-git",
"publish-major": "npm run build-all && npm version major && npm run publish-git",
"build-module": "cross-env BABEL_ENV=module ./node_modules/.bin/babel ./src --out-dir ./dist/es6 --source-maps --copy-files"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/traverse": "^7.12.1",
"@babel/types": "^7.12.1",
"@types/node": "^13.13.29",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"babel-loader": "^8.1.0",
"eslint": "^8.1.0",
"eslint-webpack-plugin": "^3.0.1",
"minimist": ">=1.2.3",
"serialize-javascript": "^5.0.1",
"terser-webpack-plugin": "^3.1.0",
"typescript": "^4.0.0",
"webpack": "^5.45.1",
"webpack-cli": "^4.8.0"
},
"bugs": {
"url": "https://github.com/tonix-tuft/run-length-bitmap/issues"
},
"homepage": "https://github.com/tonix-tuft/run-length-bitmap#readme",
"dependencies": {
"js-utl": "^4.37.0"
},
"files": [
"dist",
"src"
]
}