-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.1 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
{
"name": "frau-local-appresolver",
"version": "1.3.1",
"description": "A free-range-app utility for resolving locally hosted apps.",
"main": "src/index.js",
"bin": {
"frau-local-appresolver": "bin/appresolvercli"
},
"scripts": {
"lint": "eslint .",
"test:unit": "mocha",
"test": "npm run lint && npm run test:unit"
},
"files": [
"/bin",
"/src"
],
"repository": {
"type": "git",
"url": "https://github.com/Brightspace/frau-local-appresolver.git"
},
"keywords": [
"d2l",
"frau"
],
"author": "D2L Corporation",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Brightspace/frau-local-appresolver/issues"
},
"homepage": "https://github.com/Brightspace/frau-local-appresolver",
"dependencies": {
"chalk": "^4",
"cors": "^2",
"deasync": "^0.1",
"express": "^4",
"serve-static": "^1",
"superagent-d2l-cors-proxy": "^0.3",
"yargs": "^17"
},
"devDependencies": {
"chai": "^4",
"eslint": "^9",
"eslint-config-brightspace": "^2.0",
"globals": "^15",
"mocha": "^11",
"request": "^2"
}
}