-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "d3-clock",
"version": "0.1.5",
"description": "An analogue clock made with D3.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "parcel index.html",
"build": "tsc",
"patch-release": "tsc && npm version patch && npm publish && git push --follow-tags",
"minor-release": "tsc && npm version minor && npm publish && git push --follow-tags"
},
"keywords": [
"analogue",
"clock",
"d3"
],
"files": [
"dist/index.d.ts",
"dist/index.js",
"dist/lib/",
"dist/lib/faces/"
],
"author": "Erik Vullings <[email protected]> (http://www.tno.nl)",
"license": "MIT",
"dependencies": {
"@types/d3-array": "^1.2.1",
"@types/d3-ease": "^1.0.7",
"@types/d3-selection": "^1.3.1",
"@types/d3-time": "^1.0.8",
"@types/d3-time-format": "^2.1.0",
"@types/d3-transition": "^1.1.1",
"d3-array": "^1.2.1",
"d3-ease": "^1.0.3",
"d3-selection": "^1.3.0",
"d3-time": "^1.0.8",
"d3-time-format": "^2.1.1",
"d3-transition": "^1.1.1"
},
"devDependencies": {
"parcel-bundler": "^1.8.1",
"typescript": "^2.9.1"
}
}