-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
50 lines (50 loc) · 1.14 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
50
{
"name": "@brightspace-ui/intl",
"version": "3.21.2",
"description": "Internationalization APIs for number, date, time and file size formatting and parsing in D2L Brightspace.",
"main": "lib/number.js",
"type": "module",
"scripts": {
"lint": "eslint .",
"start": "web-dev-server --node-resolve --watch --open /demo/",
"test:unit": "d2l-test-runner",
"test": "npm run lint && npm run test:unit"
},
"files": [
"/lang",
"/lib",
"/helpers"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/BrightspaceUI/intl.git"
},
"keywords": [
"d2l",
"brightspace",
"intl",
"internationalization",
"i18n",
"date",
"time",
"number"
],
"author": "D2L Corporation",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/BrightspaceUI/intl/issues"
},
"homepage": "https://github.com/BrightspaceUI/intl",
"devDependencies": {
"@brightspace-ui/testing": "^1",
"eslint": "^9",
"eslint-config-brightspace": "^2",
"sinon": "^19.0.2"
},
"dependencies": {
"intl-messageformat": "^10"
}
}