generated from nyteshade/cjs-mjs-combo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.38 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
{
"author": "Brielle Harrison <nyteshade at gmail.com>",
"browser": "dist/@nejs/extension.bundle.2.20.0.js",
"description": "A small library for extending existing JavaScript",
"devDependencies": {
"@jest/expect": "^29.7.0",
"docdash": "^2.0.2",
"esbuild": "^0.19.10",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-localstorage-mock": "^2.4.26",
"jsdoc": "^4.0.2",
"prompts": "^2.4.2",
"rimraf": "^5.0.5",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16"
},
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"iifeGlobalName": "",
"jest": {
"verbose": true,
"setupFiles": [
"jest-localstorage-mock"
],
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"keywords": [
"javascript",
"browser",
"localStorage"
],
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"name": "@nejs/extension",
"scripts": {
"build": "bin/clean && bin/esbuild && bin/build",
"distribute": "bin/clean && bin/esbuild && bin/build && npm run docs && npm publish",
"browser": "bin/esbuild",
"clean": "bin/clean",
"docs": "jsdoc -c jsdoc-config.json",
"module": "bin/build",
"postpack": "bin/clean && bin/esbuild && bin/build",
"test": "jest"
},
"type": "module",
"version": "2.20.0"
}