-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"description": "Polymer mixin for localization of D2L components",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/BrightspaceUI/localize-behavior.git"
},
"name": "@brightspace-ui/localize-behavior",
"scripts": {
"lint": "eslint . --ext .js,.html",
"start": "web-dev-server --node-resolve --watch --open --app-index demo/index.html",
"test": "npm run lint && npm run test:unit",
"test:unit": "d2l-test-runner"
},
"author": "D2L Corporation",
"license": "Apache-2.0",
"devDependencies": {
"@brightspace-ui/core": "^3",
"@brightspace-ui/testing": "^1",
"@web/dev-server": "^0.4",
"eslint": "^8",
"eslint-config-brightspace": "^0.25",
"sinon": "^19"
},
"version": "2.10.1",
"main": "d2l-localize-behavior.js",
"files": [
"app-localize-behavior.js",
"d2l-localize-behavior.js",
"getLocalizeResources.js"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@brightspace-ui/intl": "^3",
"@polymer/iron-ajax": "^3.0.0-pre.26",
"@polymer/polymer": "^3",
"intl-messageformat": "^10"
}
}