-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.24 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
{
"name": "prevent-undefined",
"version": "3.0.4",
"description": "prevent-undefined let you know when your code refers a non-existing propery",
"main": "index.mjs",
"type": "module",
"exports": {
"./common.js": {
"default": "./index.cjs"
},
".": {
"import": "./index.mjs",
"require": "./index.cjs"
}
},
"scripts": {
"test-esm": "node --test index.test.mjs",
"test-cjs": "node --test index.test.cjs",
"test": "npm run make; npm run test-esm ; npm run test-cjs",
"make": "node ./make.js"
},
"files": [
"README.md",
"index.cjs",
"index.mjs",
"package.json"
],
"author": {
"name": "Atsushi Oka (Kombucha.js)",
"url": "https://github.com/ats4u"
},
"jest": {
"moduleFileExtensions": [
"js",
"mjs",
"cjs",
"jsx",
"ts",
"tsx",
"json",
"node"
],
"testMatch": [
"**/*.test.[cm]js"
],
"verbose": true
},
"repository": {
"type": "git",
"url": "https://github.com/kombucha-js/prevent-undefined"
},
"license": "ISC",
"devDependencies": {
"sqlmacro": "^0.1.0"
},
"peerDependencies": {
"vanilla-schema-validator": "^3.0.0"
},
"devDependencies": {
},
"dependencies": {
}
}