-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
106 lines (106 loc) · 3.18 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@jiaminghi/c-render",
"version": "1.0.0-alpha.4",
"author": "JiaMing <[email protected]>",
"description": "Canvas-based vector graphics rendering plugin",
"main": "lib/index.js",
"unpkg": "dist/index.js",
"module": "es/index.js",
"types": "es/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/DataV-Team/CRender.git"
},
"scripts": {
"dev": "ts-node scripts/dev.ts",
"clean": "rimraf lib dist es",
"type:check": "tsc --noEmit",
"lint": "eslint --ext js,ts src test",
"format:check": "prettier --check .",
"format": "prettier --write .",
"build:rollup": "rollup -c",
"build:es": "babel src --out-dir es --extensions \".ts\"",
"build": "npm run build:rollup && npm run build:es && npm run format",
"prepare": "npm run clean && npm run check && npm run build",
"test": "mocha",
"test:fun": "ts-node scripts/test.ts",
"check": "npm run type:check && npm run lint && npm run format:check && npm run test",
"docs": "vuepress dev docs",
"build:docs": "vuepress build docs",
"deploy": "ts-node scripts/deploy.ts"
},
"husky": {
"hooks": {
"pre-commit": "npm run check",
"pre-push": "npm run check"
}
},
"license": "MIT",
"bugs": {
"url": "https://github.com/DataV-Team/CRender/issues"
},
"keywords": [
"canvas",
"render",
"graph",
"vector"
],
"homepage": "https://github.com/DataV-Team/CRender#readme",
"dependencies": {
"@babel/runtime": "^7.5.5",
"@jiaminghi/bezier-curve": "^1.0.1",
"@jiaminghi/color": "^1.1.1",
"@jiaminghi/transition": "2.0.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.6",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.8.6",
"@babel/preset-typescript": "^7.10.4",
"@babel/register": "^7.9.0",
"@jiaminghi/fs": "^0.1.1",
"@jiaminghi/ftp": "^0.0.2",
"@jiaminghi/print": "^0.2.0",
"@jiaminghi/utils-node": "^0.1.0",
"@rollup/plugin-babel": "^5.0.3",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^8.0.1",
"@rollup/plugin-replace": "^2.3.3",
"@types/chai": "^4.2.11",
"@types/ftp": "^0.3.31",
"@types/lodash": "^4.14.157",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.0",
"@types/offscreencanvas": "^2019.6.4",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/rimraf": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"babel-plugin-transform-runtime": "^6.23.0",
"chai": "^4.2.0",
"eslint": "^8.1.0",
"ftp": "^0.3.10",
"husky": "^4.2.5",
"less": "^3.11.3",
"less-loader": "^6.1.0",
"lite-server": "^2.5.4",
"lodash": "^4.17.19",
"mocha": "^6.2.3",
"npm-run-all": "^4.1.5",
"open": "^7.1.0",
"prettier": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"rollup": "^2.15.0",
"rollup-plugin-postcss": "^3.1.2",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.30.0",
"ts-node": "^8.8.2",
"tslib": "^2.3.1",
"typescript": "^4.4.4",
"vuepress": "^1.5.0"
}
}