source: node_modules/internmap/package.json@ a762898

Last change on this file since a762898 was e4c61dd, checked in by istevanoska <ilinastevanoska@…>, 6 months ago

Prototype 1.1

  • Property mode set to 100644
File size: 1.0 KB
Line 
1{
2 "name": "internmap",
3 "version": "2.0.3",
4 "description": "Map and Set with automatic key interning",
5 "homepage": "https://github.com/mbostock/internmap/",
6 "license": "ISC",
7 "author": {
8 "name": "Mike Bostock",
9 "url": "https://bost.ocks.org/mike"
10 },
11 "type": "module",
12 "main": "src/index.js",
13 "module": "src/index.js",
14 "jsdelivr": "dist/internmap.min.js",
15 "unpkg": "dist/internmap.min.js",
16 "exports": {
17 "umd": "./dist/internmap.min.js",
18 "default": "./src/index.js"
19 },
20 "repository": {
21 "type": "git",
22 "url": "https://github.com/mbostock/internmap.git"
23 },
24 "files": [
25 "dist/**/*.js",
26 "src/**/*.js"
27 ],
28 "scripts": {
29 "test": "mocha 'test/**/*-test.js' && eslint src test",
30 "prepublishOnly": "rm -rf dist && yarn test && rollup -c",
31 "postpublish": "git push && git push --tags"
32 },
33 "sideEffects": false,
34 "devDependencies": {
35 "eslint": "^7.32.0",
36 "mocha": "^9.1.1",
37 "rollup": "^2.56.3",
38 "rollup-plugin-terser": "^7.0.2"
39 },
40 "engines": {
41 "node": ">=12"
42 }
43}
Note: See TracBrowser for help on using the repository browser.