-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 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
{
"name": "@brightspace-hmc/siren-sdk",
"version": "3.28.0",
"type": "module",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext .js,.html",
"generate:docs": "jsdoc src -R README.md -r -d docs",
"test": "npm run lint && npm run test:headless",
"test:headless": "web-test-runner --files \"./test/**/*.test.js\" --node-resolve",
"test:headless:watch": "web-test-runner --files \"./test/**/*.test.js\" --node-resolve --watch"
},
"author": "D2L Corporation",
"license": "Apache-2.0",
"files": [
"/src"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@brightspace-ui/core": "^3",
"@open-wc/dedupe-mixin": "^1",
"@polymer/polymer": "^3",
"d2l-fetch": "^2",
"d2l-polymer-siren-behaviors": "^2",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7",
"@babel/eslint-parser": "^7",
"@open-wc/testing": "^3",
"@web/test-runner": "^0.17",
"eslint": "^8",
"eslint-config-brightspace": "^0.24",
"fetch-mock": "^9",
"jsdoc": "^4",
"lit": "^2",
"sinon": "^15"
}
}