-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
46 lines (46 loc) · 1.57 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
{
"name": "sharedmap",
"version": "1.2.1",
"description": "Multithreading-compatible SharedMap in vanilla JS",
"main": "index.umd.js",
"module": "index.es.js",
"typings": "index.d.ts",
"scripts": {
"test": "node --experimental-worker test",
"c8": "node_modules/.bin/c8 node test",
"lcov": "node_modules/.bin/c8 report --reporter=text-lcov > coverage/tests.lcov",
"codecov": "curl -s https://codecov.io/bash | bash",
"build:umd": "node_modules/.bin/rollup -i index.js -f umd -o index.umd.js --output.name=default",
"build:es": "node_modules/.bin/rollup -i index.js -f es -o index.es.js",
"build": "npm run build:umd && npm run build:es",
"preversion": "npm test && eslint index.js test.js index.es.js index.umd.js",
"minify": "terser index.js -o index.min.js",
"doc": "jsdoc index.js README.md -d docs",
"version": "npm run build && npm run doc && git add package.json index.umd.js index.es.js docs",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmomtchev/SharedMap.git"
},
"keywords": [
"sharedmap",
"multithreading",
"worker",
"service-worker",
"worker-threads",
"SharedArrayBuffer"
],
"author": "Momtchil Momtchev <momtchil@momtchev.com>",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/mmomtchev/SharedMap/issues"
},
"homepage": "https://github.com/mmomtchev/SharedMap#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.7.0",
"jsdoc": "^3.6.5",
"rollup": "^2.17.0"
}
}