-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
97 lines (97 loc) · 2.54 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
{
"name": "kyanite",
"version": "3.2.0",
"description": "A small library of pure functional utilities to make life easier and data better",
"main": "dist/kyanite.min.cjs",
"type": "module",
"module": "dist/kyanite.min.js",
"unpkg": "dist/kyanite.iife.min.js",
"jsdelivr": "dist/kyanite.iife.min.js",
"typings": "types/index.d.ts",
"directories": {
"test": "tests",
"lib": "src"
},
"exports": {
".": {
"require": {
"types": "./types/index.d.cts",
"default": "./dist/kyanite.min.cjs"
},
"import": {
"types": "./types/index.d.ts",
"default": "./dist/kyanite.min.js"
},
"default": {
"types": "./types/index.d.ts",
"default": "./dist/kyanite.iife.min.js"
}
}
},
"devDependencies": {
"@babel/core": "7.25.8",
"@babel/plugin-transform-object-assign": "7.25.7",
"@babel/preset-env": "7.25.8",
"@codecov/rollup-plugin": "^1.2.0",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-terser": "0.4.4",
"c8": "10.1.2",
"dotenv": "^16.4.5",
"globby": "14.0.2",
"jsdoc": "4.0.3",
"npm-run-all": "4.1.5",
"pinet": "1.2.1",
"rollup": "4.24.0",
"rollup-plugin-filesize": "10.0.0",
"standard": "17.1.2",
"tap-on": "1.0.0",
"tape": "5.9.0"
},
"scripts": {
"test": "tape tests/**/*.spec.js | tap-on -u",
"test:cov": "c8 tape tests/**/*.spec.js",
"coverage": "c8 check-coverage --lines 100 --branches 100 --functions 100 --statements 100",
"report": "c8 report --reporter=text-lcov > coverage.lcov",
"lint": "standard --fix src/**/*.js",
"build": "rollup -c",
"create": "node scripts/create-export.js && standard --fix src/index.js",
"docs": "node_modules/.bin/jsdoc -c jsdoc.json",
"scripts": "npm-run-all create build",
"ts": "tsc -p types/tsconfig.json",
"prepack": "npm-run-all --parallel create lint test --serial build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dhershman1/kyanite"
},
"keywords": [
"kyanite",
"functional",
"library",
"pure",
"operators",
"helpers",
"utils",
"utilities",
"utility",
"curried",
"partial"
],
"author": {
"name": "Dustin Hershman",
"email": "[email protected]",
"url": "https://dusty.codes"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dhershman1/kyanite/issues",
"email": "[email protected]"
},
"homepage": "https://kyanite.dusty.codes",
"standard": {
"ignore": [
"dist",
"types"
]
}
}