-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
29 lines (29 loc) · 884 Bytes
/
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
{
"name": "bidirectional-map",
"version": "1.1.1",
"description": "Create 'key/value' collections of one-to-one correspondence.",
"main": "dist/index.js",
"scripts": {
"build": "babel index.js > dist/index.js",
"test": "npm run build && tape test.js",
"preversion": "npm run test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/educastellano/bidirectional-map.git"
},
"author": "Eduard Castellano",
"license": "ISC",
"bugs": {
"url": "https://github.com/educastellano/bidirectional-map/issues"
},
"homepage": "https://github.com/educastellano/bidirectional-map#readme",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"babel-plugin-add-module-exports": "^1.0.4",
"tape": "^4.4.0"
}
}