-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.04 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
{
"name": "import-as-string",
"description": "Import the contents of any file into a Node.js ES module as a string",
"version": "1.0.0",
"main": "index.js",
"files": [
"index.js",
"LICENSE",
"README.md"
],
"type": "module",
"engines": {
"node": ">=12"
},
"homepage": "https://github.com/aldeed/import-as-string",
"url": "https://github.com/aldeed/import-as-string",
"email": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/aldeed/import-as-string.git"
},
"author": {
"name": "Eric Dobbertin",
"email": "[email protected]",
"url": "https://dairystatedesigns.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/aldeed/import-as-string/issues"
},
"sideEffects": false,
"scripts": {
"prepublishOnly": "npm test",
"test": "node --no-warnings tests/test.js"
},
"dependencies": {
"callsite": "^1.0.0"
},
"prettier": {
"arrowParens": "always"
},
"publishConfig": {
"access": "public"
}
}