-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.6 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
{
"version": "0.5.1",
"name": "d3-quant",
"description": "D3 library for quantitative analytics",
"homepage": "https://github.com/quantmind/d3-quant",
"repository": {
"type": "git",
"url": "https://github.com/quantmind/d3-quant.git"
},
"keywords": [
"d3",
"d3-module",
"math"
],
"license": "BSD-3-Clause",
"author": {
"name": "quantmind.com",
"email": "message@quantmind.com"
},
"main": "dist/index.js",
"module": "esm/index.js",
"dependencies": {
"d3-array": "2.4.0",
"d3-random": "2.1.0"
},
"devDependencies": {
"@types/d3-array": "^2.0.0",
"@types/d3-random": "^1.1.2",
"@types/jest": "^26.0.4",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"eslint": "7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"publish": "0.6",
"rollup": "2.21.0",
"rollup-plugin-typescript2": "^0.27.1",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
},
"scripts": {
"lint": "eslint '.'",
"fix": "eslint '.' --fix",
"precommit": "lint-staged",
"test": "jest -c --coverage",
"build": "export NODE_ENV=production && rollup -c",
"watch": "rollup -c -w"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"yarn fix"
],
"*.{json,css,scss}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
}
}