forked from ecomfe/zrender
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.54 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
{
"name": "zrender",
"version": "5.2.1",
"description": "A lightweight canvas library.",
"keywords": [
"canvas",
"2d"
],
"repository": {
"type": "git",
"url": "https://github.com/ecomfe/zrender.git"
},
"scripts": {
"prepublish": "npm run release",
"build": "npm run build:bundle && npm run build:lib",
"release": "node build/build.js --minify && npm run build:lib",
"prepare:nightly": "node build/prepareNightly.js",
"prepare:nightly-next": "node build/prepareNightly.js --next",
"build:bundle": "node build/build.js",
"build:lib": "npx tsc -m ES2015 --outDir lib",
"watch:bundle": "node build/build.js --watch",
"watch:lib": "npx tsc -w -m ES2015 --outDir lib",
"test": "npx jest --config test/ut/jest.config.js",
"lint": "npx eslint src/**/*.ts"
},
"license": "BSD-3-Clause",
"types": "index.d.ts",
"module": "index.js",
"main": "dist/zrender.js",
"dependencies": {
"tslib": "2.3.0"
},
"sideEffects": [
"lib/canvas/canvas.js",
"lib/svg/svg.js"
],
"devDependencies": {
"@microsoft/api-extractor": "^7.7.2",
"@types/jest": "^25.1.2",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"chalk": "^3.0.0",
"commander": "2.11.0",
"eslint": "6.3.0",
"fs-extra": "4.0.2",
"jest": "^25.1.0",
"jsdom": "^16.0.0",
"rollup": "^1.28.0",
"rollup-plugin-typescript2": "^0.25.3",
"rollup-plugin-uglify": "^6.0.4",
"ts-jest": "^25.2.0",
"typescript": "4.3.5",
"uglify-js": "^3.10.0"
}
}