forked from edbrsk/d3-stencil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.06 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
{
"name": "d3-stencil",
"private": false,
"version": "2.2.3",
"description": "Charts built with D3 and Stencil. Framework-agnostic, simple.",
"homepage": "https://github.com/edgarordonez/d3-stencil",
"keywords": [
"Stencil",
"D3.js",
"Web Components",
"Graphs",
"Charts"
],
"author": "Edgar Ordóñez Rodríguez",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"module": "dist/index.mjs",
"files": [
"dist/"
],
"scripts": {
"start": "stencil build --dev --watch --serve",
"build": "stencil build",
"test": "stencil test --spec --e2e --coverage",
"test.watch": "stencil test --spec --e2e --watchAll",
"lint": "npx tslint --project tsconfig.json --fix",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"circular": "npx madge -c --extensions ts ./src --ts-config ./tsconfig.json",
"prepublish": "npm run build --no-cache --prod"
},
"dependencies": {
"d3": "^5.15.0",
"object-assign-deep": "^0.4.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@stencil/core": "^1.11.2",
"@stencil/router": "1.0.1",
"@stencil/sass": "^1.1.1",
"@stencil/utils": "0.0.5",
"@types/d3": "^5.7.2",
"@types/jest": "24.9.1",
"@types/puppeteer": "2.0.1",
"coveralls": "^3.0.11",
"cz-conventional-changelog": "^3.1.0",
"husky": "^4.2.3",
"jest": "24.9.0",
"jest-cli": "24.9.0",
"madge": "^3.8.0",
"prettier": "^2.0.2",
"puppeteer": "2.1.1",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"workbox-build": "5.1.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edgarordonez/d3-stencil.git"
},
"bugs": {
"url": "https://github.com/edgarordonez/d3-stencil"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}