-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.54 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.54 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "betterset",
"version": "3.0.3",
"description": "An extension of the javascript Set object which contains useful Set operation methods",
"main": "./lib/index.js",
"types": "./src/main.d.ts",
"scripts": {
"build": "babel src --out-dir ./lib",
"test": "mocha --harmony --recursive --require @babel/register -t 40000 test",
"coverage": "nyc npm run test",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/strongpauly/BetterSet.git"
},
"keywords": [
"Set",
"union",
"intersection",
"javascript"
],
"author": "Paul Potsides",
"license": "MIT",
"bugs": {
"url": "https://github.com/strongpauly/BetterSet/issues"
},
"homepage": "https://github.com/strongpauly/BetterSet#readme",
"devDependencies": {
"@babel/cli": "7.27.0",
"@babel/core": "7.26.10",
"@babel/plugin-transform-classes": "7.25.9",
"@babel/plugin-transform-modules-commonjs": "7.26.3",
"@babel/preset-env": "7.26.9",
"@babel/register": "7.25.9",
"babel-plugin-transform-builtin-extend": "1.1.2",
"chai": "5.2.0",
"chai-as-promised": "8.0.1",
"coveralls": "3.1.1",
"mocha": "11.1.0",
"nyc": "17.1.0"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"module": "./src/index.js",
"type": "module",
"exports": {
".": {
"import": "./src/index.js",
"require": "./lib/index.js",
"types": "./src/main.d.ts"
}
}
}