-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 1.85 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
{
"name": "@bbc/storyplayer",
"version": "1.4.9",
"description": "StoryPlayer - reference player for BBC Research & Development's object-based media schema (https://www.npmjs.com/package/@bbc/object-based-media-schema)",
"main": "./dist/storyplayer.js",
"module": "./dist/storyplayer.js",
"type": "module",
"keywords": [
"BBC",
"BBC Research & Development",
"player",
"interactive",
"media",
"object",
"personalised"
],
"scripts": {
"clean": "rm -rf dist",
"build": "vite build",
"build:watch": "vite build --watch",
"dev": "vite",
"test": "concurrently -c red,green,yellow -n t- npm:test-*",
"test-eslint": "eslint src/",
"test-stylelint": "stylelint 'src/assets/styles/**/*.scss'",
"test-types": "tsc",
"prepublishOnly": "npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bbc/storyplayer.git"
},
"author": "BBC R&D",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/bbc/storyplayer/issues"
},
"files": [
"/dist"
],
"homepage": "https://github.com/bbc/storyplayer#readme",
"devDependencies": {
"@bbc/object-based-media-schema": "^1.0.4",
"@types/node": "^20.16.11",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"concurrently": "^5.3.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"jsoneditor": "^9.9.0",
"sass": "^1.53.0",
"stylelint": "^16.10.0",
"stylelint-config-standard-scss": "^13.1.0",
"typescript": "^4.9.4",
"utility-types": "^3.10.0",
"vite": "^4.0.3"
},
"dependencies": {
"browser-bunyan": "^1.5.3",
"eventemitter3": "^5.0.0",
"json-logic-js": "^2.0.0",
"shaka-player": "^4.10.8",
"three": "^0.148.0",
"uuid": "^9.0.0"
}
}