-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.21 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
{
"name": "@teamhive/stencil-scorm-viewer",
"version": "1.0.0",
"description": "Stencil component for viewing SCORM e-learning courses offline.",
"module": "dist/esm/index.js",
"main": "dist/index.js",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/"
],
"scripts": {
"build": "stencil build",
"start": "stencil build --dev --watch --serve",
"test": "jest",
"test.watch": "jest --watch"
},
"dependencies": {},
"devDependencies": {
"@stencil/core": "^0.11.0",
"@types/jest": "^23.3.1",
"jest": "^23.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TeamHive/stencil-scorm-viewer.git"
},
"author": "Ionic Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/TeamHive/stencil-scorm-viewer"
},
"homepage": "https://github.com/TeamHive/stencil-scorm-viewer",
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/@stencil/core/testing/jest.preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
}
}