-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.04 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.04 KB
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
{
"name": "@omenlog/super-map",
"version": "1.0.6",
"description": "Map like structure with super powers",
"type": "module",
"main": "lib/cjs/index.js",
"types": "lib/cjs/index.d.ts",
"scripts": {
"build": "webpack --config webpack.config.js",
"postbuild": "echo '{\"type\":\"commonjs\"}' | cat >lib/cjs/package.json ",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/omenlog/super-map.git"
},
"bugs": {
"url": "https://github.com/omenlog/super-map/issues"
},
"files": [
"lib/"
],
"keywords": [
"map",
"structure",
"key",
"value",
"adt"
],
"author": "Omar Lopez <omar.enrique1211@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.22",
"jest": "^26.6.3",
"terser": "^5.10.0",
"ts-jest": "^26.5.5",
"ts-loader": "^9.2.6",
"typescript": "^4.2.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
}
}