forked from antvis/F2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.39 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
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "f2",
"private": true,
"workspaces": [
"packages/*"
],
"description": "Charts for mobile visualization.",
"keywords": [
"f2",
"charts",
"mobile",
"visualization",
"data visualization",
"canvas",
"2d draw",
"mobile visualization",
"interactive"
],
"homepage": "https://github.com/antvis/f2",
"author": "https://github.com/orgs/antvis/people",
"repository": {
"type": "git",
"url": "https://github.com/antvis/f2"
},
"bugs": {
"url": "https://github.com/antvis/f2/issues"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/jest-image-snapshot": "^4.3.1",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"canvas-to-buffer": "^1.1.1",
"eslint": "^7.32.0",
"father": "^2.30.0",
"generate-changelog": "^1.8.0",
"jest": "^26.6.3",
"jest-electron": "^0.1.12",
"jest-image-snapshot": "^4.5.1",
"lerna": "^3.22.1",
"pre-commit": "^1.2.2",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna clean",
"dev": "npm run test-watch",
"build": "father build",
"build-watch": "CI=true father build -w",
"build-ci": "CI=true npm run build",
"test": "jest",
"test-cov": "jest --coverage",
"test-live": "npm run test-watch packages",
"test-watch": "DEBUG_MODE=1 jest --watch",
"coverage": "jest --coverage",
"snapshot": "jest --updateSnapshot",
"lint": "eslint ./",
"lint-fix": "eslint --fix ./",
"changelog": "generate-changelog",
"publish": "npm run build && npm run test && lerna publish",
"ci": "npm run lint && npm run build && npm run test",
"refresh": "lerna clean && yarn && lerna bootstrap",
"site:start": "cd ./packages/site && npm run site:start",
"site:develop": "cd ./packages/site && npm run site:develop",
"site:build": "cd ./packages/site && npm run site:build",
"site:deploy": "cd ./packages/site && npm run site:deploy",
"site:clean": "cd ./packages/site && npm run site:clean",
"prettier": "prettier --write './packages/**/*.{ts,tsx}'"
},
"pre-commit": {
"run": [
"lint",
"test"
],
"silent": false
},
"resolutions": {
"signal-exit": "3.0.3",
"react-monaco-editor": "0.34.0",
"monaco-editor": "0.20.0",
"monaco-editor-webpack-plugin": "1.9.1"
}
}