-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.6 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
{
"version": "0.8.0",
"scripts": {
"prerelease": "run-s check build",
"release": "np --yolo",
"check": "run-p lint test",
"pre-commit": "run-p lint-fix test",
"lint": "xo",
"lint-fix": "xo --fix",
"test": "mocha",
"build": "unbuild",
"version_": "be careful with npm life cycle!",
"publish_": "be careful with npm life cycle!"
},
"dependencies": {
"ramda": "^0.26.1"
},
"devDependencies": {
"hamjest": "^4.1.0",
"mocha": "^10.3.0",
"np": "^10.0.1",
"npm-run-all": "^4.1.5",
"typescript": "^5.4.2",
"unbuild": "^2.0.0",
"xo": "^0.58.0"
},
"devDependencies_doc": {
"typescript": "required by unbuild, even if unused"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"mocha": {
"spec": "src/**/*.test.mjs",
"reporter": "dot"
},
"xo": {
"envs": [
"node",
"mocha"
],
"prettier": true,
"rules": {
"capitalized-comments": "off",
"unicorn/no-array-callback-reference": "off",
"unicorn/prevent-abbreviations": "off"
}
},
"name": "kiss-and-type",
"description": "A lightweight approach to typing in plain JavaScript",
"keywords": [
"fp",
"functional",
"types"
],
"author": "Alex Bepple <[email protected]> (http://alex.bepple.de)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/alexbepple/kiss-and-type.git"
}
}