-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
117 lines (117 loc) · 2.98 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "set-extensions",
"version": "1.6.0",
"description": "Extending the Set class in order to support mathematical set properties and operations.",
"type": "module",
"main": "dist/index.cjs.js",
"browser": "dist/index.iife.js",
"exports": "./dist/index.js",
"scripts": {
"lint": "standard ./src | snazzy",
"lint:fix": "standard ./src --fix | snazzy",
"test": "NODE_ENV=test ./node_modules/.bin/mocha src/*.tests.js",
"test:coverage": "NODE_ENV=test c8 --include=src/index.js --reporter=html --reporter=text ./node_modules/.bin/mocha 'src/*.tests.js'",
"test:watch": "npm test -- --watch",
"docs": "jsdoc -t node_modules/@mareoraft/docdash --readme ../README.md ./lib/*.js -d ../docs && jsdoc2md ./lib/index.js > ../api.md",
"build:min": "minify ./dist/index.js --out-file ./dist/index.min.js --mangle.keepFnName --mangle.keepClassName --",
"build:full": "npm run docs && npm run build && npm run build-min",
"copy": "cp ../README.md ./README.md && cp ../LICENSE ./LICENSE",
"build": "rollup --config rollup.dist.config.js",
"report": "nyc report --reporter=text-lcov | coveralls"
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/register": "^7.21.0",
"@mareoraft/docdash": "^1.1.1",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.0",
"babel-plugin-istanbul": "^6.1.1",
"c8": "^7.13.0",
"chai": "^4.3.7",
"jsdoc": "^4.0.2",
"mocha": "^10.2.0",
"rollup": "^3.23.0",
"rollup-plugin-terser": "^7.0.2",
"snazzy": "^9.0.0",
"standard": "^17.0.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"modules": false
}
]
],
"env": {
"test": {
"plugins": [
[
"babel-plugin-istanbul"
]
]
}
}
},
"nyc": {
"include": [
"**/index.js"
],
"exclude": [
"lib/**/*.tests.js"
],
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": false,
"all": true
},
"targets": "> 0.25%, not dead",
"repository": {
"type": "git",
"url": "git+https://github.com/jankapunkt/js-set-extension.git"
},
"keywords": [
"set",
"set theory",
"math",
"superset",
"subset",
"proper superset",
"proper subset",
"union",
"intersection",
"complement",
"symmetric difference",
"powerset",
"difference"
],
"author": "Jan Küster <info@jankuester.com>",
"contributors": [
"MareoRaft",
"Eriice"
],
"funding": {
"type": "PayPal",
"url": "https://paypal.me/kuesterjan"
},
"engines": {
"node": ">= 14.x"
},
"files": [
"dist",
"API.md",
"README.md",
"LICENSE"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jankapunkt/js-set-extension/issues"
},
"homepage": "https://github.com/jankapunkt/js-set-extension#readme",
"dependencies": {}
}