-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "@microsoft/immersive-reader-sdk",
"version": "1.4.0",
"homepage": "https://github.com/Microsoft/immersive-reader-sdk",
"license": "MIT",
"main": "lib/immersive-reader-sdk.js",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/immersive-reader-sdk.git",
"directory": "js"
},
"types": "lib/immersive-reader-sdk.d.ts",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^12.12.14",
"jest": "^27.3.1",
"replace-in-file": "^3.4.4",
"ts-jest": "^27.0.7",
"ts-loader": "^5.3.3",
"tslint": "^5.14.0",
"tslint-loader": "^3.5.4",
"tslint-microsoft-contrib": "^6.1.0",
"typescript": "^3.8",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.1"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"build:details": "webpack --config webpack.config.js --display-error-details",
"prepublish": "yarn build",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom"
},
"dependencies": {
"decode-uri-component": "0.2.1",
"json-schema": "^0.4.0",
"loader-utils": "^3.2.1",
"minimatch": "3.0.5",
"string_decoder": "^1.3.0",
"terser": "^5.14.2"
}
}