-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2 KB
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
{
"name": "fundcharts",
"version": "1.0.0",
"description": "web/weapp/nodejs canvas lite charts library.",
"author": "Wayne",
"packageManager": "pnpm@8.0.0",
"main": "index.js",
"engines": {
"node": ">=12.22.0",
"pnpm": ">=8.0.0"
},
"scripts": {
"dev": "rollup --config scripts/build/rollup.dev.config.js --watch",
"test": "jest --config ./scripts/jest/jest.config.js",
"test:unit": "jest --config ./scripts/jest/jest.config.js",
"build": "rollup --config scripts/build/rollup.config.js",
"build:prod": "rimraf lib && cross-env NODE_ENV=production rollup --config scripts/build/rollup.config.js"
},
"license": "MIT",
"devDependencies": {
"@jest/types": "^26.3.0",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-eslint": "^8.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.2.0",
"@rollup/plugin-strip": "^2.1.0",
"@types/jest": "^26.0.24",
"@types/node": "^15.12.4",
"@types/react": "^16.9.35",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"cross-env": "^7.0.3",
"eslint": "^6.8.0",
"eslint-config-enough": "^0.3.0",
"glob": "^7.1.2",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.4.0",
"jest-diff": "^26.6.2",
"jest-environment-node": "^26.6.2",
"jest-localstorage-mock": "^2.3.0",
"mockjs": "^1.0.1-beta3",
"rimraf": "^2.6.2",
"rollup": "^2.70.1",
"rollup-plugin-cpy": "^2.0.1",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^26.2.0",
"tslib": "^2.4.0",
"typescript": "^4.6.3"
},
"config": {
"ghooks": {
"commit-msg": "./scripts/validate-commit-msg.js",
"pre-commit": "npm run lint"
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"workspaces": [
"packages/*"
]
}