-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.87 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
{
"name": "typechart",
"version": "1.0.0",
"description": "EChart built with Typescript",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "./node_modules/.bin/eslint --max-warnings=0 --ignore-path .gitignore --ext .js,.ts, .",
"lint:fix": "./node_modules/.bin/eslint --fix --ignore-path .gitignore --ext .js,.ts, .",
"prettier": "./node_modules/.bin/prettier \"**/*.+(js|jsx|json|yml|yaml|css|less|scss|ts|tsx|md|mdx|graphql|vue)\" --ignore-path=.eslintignore",
"validate": "npm run prettier -- --list-different",
"format": "npm run prettier -- --write"
},
"keywords": [
"Echart",
"Visualisation",
"Typescript"
],
"author": "dontry",
"license": "MIT",
"devDependencies": {
"@types/echarts": "^4.4.3",
"@types/jest": "^25.1.4",
"@types/lodash": "^4.14.149",
"@types/papaparse": "^5.0.3",
"@types/uuid": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.3",
"jest": "^25.1.0",
"jest-watch-typeahead": "^0.4.2",
"lint-staged": "^10.0.10",
"papaparse": "^5.2.0",
"prettier": "^2.0.2",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3",
"uuid": "^7.0.2"
},
"dependencies": {
"@types/d3-format": "^1.3.1",
"d3-format": "^1.4.3",
"lodash": "^4.17.15",
"moment": "^2.24.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}