This repository has been archived by the owner on Sep 5, 2024. It is now read-only.
generated from karmaniverous/npm-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.23 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
{
"name": "@karmaniverous/tagged-templates",
"version": "0.1.2",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/karmaniverous/tagged-templates"
},
"author": "Jason G. Williscroft",
"bugs": {
"url": "https://github.com/karmaniverous/tagged-templates/issues"
},
"description": "Here are some handy tagged template functions to make your ES6 template literals work better!",
"homepage": "https://github.com/karmaniverous/tagged-templates#readme",
"keywords": [
"es6",
"javascript",
"string",
"tagged-template",
"template-literals"
],
"license": "BSD-3-Clause",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10",
"@babel/eslint-parser": "^7.22.10",
"@babel/plugin-syntax-import-assertions": "^7.22.5",
"@babel/preset-env": "^7.22.10",
"@babel/register": "^7.22.5",
"@karmaniverous/get-dotenv": "^3.1.13",
"@types/node": "^20.5.0",
"babel-plugin-lodash": "^3.3.4",
"chai": "^4.3.7",
"concat-md": "^0.5.1",
"eslint": "^8.47.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-jsdoc": "^46.4.6",
"eslint-plugin-mocha": "^10.1.0",
"jsdoc-to-markdown": "^8.0.0",
"mocha": "^10.2.0",
"prettier": "^3.0.1",
"release-it": "^16.1.5"
},
"exports": {
".": {
"import": "./lib/index.js",
"require": "./dist/default/lib/index.js"
}
},
"main": "./lib/index.js",
"mocha": {
"exclude": [
"./dist/**",
"./node_modules/**"
],
"require": [
"@babel/register"
],
"spec": "./**/*.test.!(*.*)"
},
"release-it": {
"github": {
"release": true
},
"npm": {
"publish": true
}
},
"scripts": {
"lint": "eslint lib/**",
"test": "mocha",
"build": "babel lib -d dist/default/lib --delete-dir-on-start --config-file ./dist/default/.babelrc",
"doc": "jsdoc2md -c doc/jsdoc.config.json -f lib/**/*.* -t doc/api-template.hbs > doc/2-api.jsdoc2.md && concat-md doc --hide-anchor-links > README.md",
"package": "npm run lint && npm run test && npm run build && npm run doc",
"release": "npm run package && getdotenv -- release-it"
},
"type": "module"
}