-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.17 KB
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
{
"name": "chart.js-stencil",
"version": "0.0.2",
"description": "Chart.js custom element",
"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": {
"chart.js": "^2.7.2"
},
"devDependencies": {
"@stencil/core": "^0.12.3",
"@types/jest": "^23.3.1",
"jest": "^23.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitflower/chart.js-stencil.git"
},
"author": "Matthias Max",
"license": "MIT",
"bugs": {
"url": "https://github.com/bitflower/chart.js-stencil"
},
"homepage": "https://github.com/bitflower/chart.js-stencil",
"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"
]
}
}