-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·62 lines (62 loc) · 1.68 KB
/
package.json
File metadata and controls
executable file
·62 lines (62 loc) · 1.68 KB
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
{
"name": "remote-import",
"version": "0.0.11",
"description": "Import modules from a URL with a customized module loader.",
"main": "lib/RemoteImport.js",
"bin": {
"remote-run": "./lib/remote-run.js",
"remote-node": "./lib/remote-node.js"
},
"types": "lib/RemoteImport.d.ts",
"scripts": {
"test_jest": "jest --config jestconfig.json",
"test": "npm install && ./sample/index_commJs.js && ./sample/index_esm.js && ./sample/index_preLoad.js && ./sample/index_withoutEsmPreload.js",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/treedoc/remote-import.git"
},
"bugs": {
"url": "https://github.com/treedoc/remote-import/issues"
},
"keywords": [
"typescript",
"remote import",
"url import",
"remote module"
],
"author": "Jianwu Chen",
"license": "MIT",
"homepage": "https://github.com/treedoc/remote-import/#readme",
"devDependencies": {
"@types/jest": "^26.0.15",
"codecov": "^3.6.1",
"jest": "^26.6.3",
"prettier": "^1.13.2",
"ts-jest": "^26.2.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.2"
},
"dependencies": {
"@types/brotli": "^1.3.0",
"brotli": "^1.3.2",
"esm-wallaby": "^3.2.25",
"sync-request": "^6.1.0"
},
"files": [
"lib/**/*",
"src/**/*"
],
"jest": {
"testEnvironment": "node"
}
}