-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·83 lines (83 loc) · 1.84 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
82
83
{
"name": "@danmasta/lo",
"private": true,
"version": "0.0.1",
"author": "Daniel Smith <[email protected]>",
"description": "Lightweight, modern utility library for node and browser",
"license": "Apache-2.0",
"keywords": [
"util",
"stdlib",
"node",
"browser",
"quickjs"
],
"main": "index.js",
"browser": "browser.js",
"type": "module",
"files": [
"browser.js",
"index.js",
"qjs.js",
"dist/**",
"lib/**",
"polyfill/**",
"types/**"
],
"exports": {
".": {
"browser": "./browser.js",
"qjs": "./dist/qjs/qjs.js",
"import": "./index.js",
"require": "./dist/cjs/index.cjs"
},
"./browser": {
"import": "./browser.js",
"require": "./dist/cjs/browser.cjs"
},
"./qjs": {
"import": "./dist/qjs/qjs.js"
},
"./constants": {
"import": "./lib/constants.js",
"require": "./dist/cjs/lib/constants.cjs"
},
"./errors": {
"import": "./lib/errors.js",
"require": "./dist/cjs/lib/errors.cjs"
}
},
"imports": {
"#node:*": {
"qjs": "./polyfill/qjs/*.js",
"default": "*"
}
},
"scripts": {
"test": "make test",
"coverage": "make coverage",
"build": "make build",
"watch": "make watch",
"preversion": "make test build status"
},
"repository": {
"type": "git",
"url": "https://github.com/danmasta/lo.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"devDependencies": {
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"c8": "^9.1.0",
"chai": "^5.1.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.4.0",
"rollup": "^4.17.2"
}
}