-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.72 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": "time-format-ticks",
"description": "Format your time axis ticks in a pretty way",
"version": "1.0.5",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ilariaventurini/time-format-ticks.git"
},
"author": {
"name": "Ilaria Venturini",
"email": "venturini.ila@gmail.com"
},
"license": "MIT",
"private": false,
"keywords": [
"d3",
"ticks",
"time",
"timeScale",
"date",
"axis",
"format"
],
"files": [
"dist/**/*"
],
"scripts": {
"compile": "tsc",
"compile-watch": "tsc --watch",
"test": "jest --config jestconfig.json",
"test-watch": "jest --watch --config jestconfig.json",
"coverage-watch": "yarn test --watchAll --coverage",
"coverage-interactive-watch": "npx live-server --port=9000 coverage",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepublish": "rm -rf dist/ && tsc",
"sanitize": "yarn format && yarn lint",
"start:demo": "parcel demo/index.html",
"build": "parcel build demo/index.html --out-dir demo-build"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/lodash": "^4.14.149",
"codecov": "^3.6.5",
"jest": "^25.1.0",
"parcel-bundler": "^1.12.4",
"prettier": "^1.19.1",
"tachyons": "^4.11.1",
"tachyons-extra": "^1.1.3",
"ts-jest": "^25.2.1",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
},
"dependencies": {
"d3-array": "^2.4.0",
"d3-axis": "^1.0.12",
"d3-scale": "^3.2.1",
"d3-selection": "^1.4.1",
"date-fns": "^2.11.0",
"lodash": "^4.17.15",
"style.css": "^1.0.0"
}
}