-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.35 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
47
48
49
{
"name": "betterset",
"version": "3.0.1",
"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.23.0",
"@babel/core": "7.23.0",
"@babel/plugin-transform-classes": "7.22.15",
"@babel/plugin-transform-modules-commonjs": "7.23.0",
"@babel/preset-env": "7.23.2",
"@babel/register": "7.22.15",
"babel-plugin-transform-builtin-extend": "1.1.2",
"chai": "4.3.10",
"chai-as-promised": "7.1.1",
"coveralls": "3.1.1",
"mocha": "10.2.0",
"nyc": "15.1.0"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
}