-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.37 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@inlivedev/inlive-js-sdk",
"version": "0.7.1",
"description": "InLive JavaScript SDK",
"keywords": [],
"license": "MIT",
"type": "module",
"files": [
"dist/**/*"
],
"main": "dist/inlive-js-sdk.js",
"module": "dist/inlive-js-sdk.js",
"types": "dist/inlive-js-sdk.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/inlivedev/inlive-js-sdk"
},
"scripts": {
"clean": "rimraf dist",
"prepare": "husky install && npm run build",
"lint": "eslint --cache",
"lint:packages": "npm run lint \"packages/**/*.js\"",
"prettier": "prettier --write",
"typecheck": "tsc",
"test": "mocha \"packages/**/*.test.js\"",
"test:watch": "mocha \"packages/**/*.test.js\" --parallel --watch",
"test:coverage": "nyc npm run test",
"build": "npm run clean && rollup -c",
"dev": "npm run clean && rollup -c -w"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.3",
"@types/chai": "^4.3.3",
"@types/lodash-es": "^4.17.7",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.18",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"chai": "^4.3.6",
"dotenv": "^16.0.2",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^46.5.1",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-unicorn": "^43.0.2",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mocha": "^10.0.0",
"mocha-explorer-launcher-scripts": "^0.4.0",
"nock": "^13.2.9",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^3.29.0",
"rollup-plugin-dts": "^6.0.1",
"semantic-release": "^21.0.1",
"sinon": "^14.0.0",
"tsc-files": "^1.1.3",
"typescript": "^5.2.2"
},
"dependencies": {
"@fingerprintjs/fingerprintjs": "^3.4.0",
"camelcase-keys": "^8.0.2",
"lit": "^2.6.1",
"lodash-es": "^4.17.21",
"node-fetch": "^2.6.1",
"shaka-player": "^4.3.4",
"snakecase-keys": "^5.4.4"
},
"engines": {
"node": " >=14.16 || >=16.0.0"
},
"release": {
"branches": [
"main",
{
"name": "dev",
"prerelease": true
}
]
}
}