generated from nyteshade/cjs-mjs-combo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json.orig
64 lines (64 loc) · 1.52 KB
/
package.json.orig
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
{
"author": "Brielle Harrison <nyteshade at gmail.com>",
<<<<<<< HEAD
"browser": "dist/@nejs/extension.bundle.2.15.0.js",
=======
"browser": "dist/@nejs/extension.bundle.2.7.3.js",
>>>>>>> a326acc (Making PatchToggle more useful)
"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 && npm run docs",
"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",
<<<<<<< HEAD
"version": "2.15.0"
=======
"version": "2.7.3"
>>>>>>> a326acc (Making PatchToggle more useful)
}