-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.76 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
{
"name": "@twipped/utils",
"version": "7.1.0",
"description": "A collection of commonly used utility functions",
"type": "module",
"main": "./index.js",
"exports": {
".": {
"webpack": "./src/index.js",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./*": {
"webpack": "./src/*.js",
"import": "./dist/*.mjs",
"require": "./dist/*.cjs",
"types": "./dist/*.d.ts"
}
},
"scripts": {
"test": "tap -R base --no-coverage tests",
"cover": "tap -R terse --coverage tests",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"docs": "rimraf docs && typedoc src/*.js --out docs --readme none --hideBreadcrumbs",
"build": "rimraf dist && npm run build:cjs && npm run build:mjs && npm run build:types",
"build:cjs": "babel src --out-dir dist --out-file-extension .cjs --ignore '**/__test__/*'",
"build:mjs": "ESM=1 babel src --out-dir dist --out-file-extension .mjs --ignore '**/__test__/*'",
"build:types": "tsc"
},
"engines": {
"node": ">=18.18.0"
},
"author": "Jocelyn Badgley <[email protected]> (http://twipped.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/Twipped/js-utils"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@twipped/eslint-config": "^8.1.1",
"babel-plugin-add-import-extension": "^1.6.0",
"eslint": "^8.36.0",
"pretty-format": "^29.5.0",
"tap": "^16.3.4",
"typedoc": "^0.25.13",
"typedoc-plugin-markdown": "^4.0.0",
"typescript": "^5.4.5"
},
"files": [
"src",
"dist",
"docs",
"CHANGELOG.md",
"LICENSE.txt",
"README.md"
],
"publishConfig": {
"access": "public"
}
}