-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.09 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
{
"name": "@ifake/signature",
"version": "0.5.3",
"description": "A signature library for web.",
"main": "dist/index.umd.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"scripts": {
"lint": "eslint src --fix --ext .ts",
"test": "jest --coverage",
"start": "cross-env NODE_ENV=development rollup -c rollup.config.ts -w",
"build": "rimraf dist && rimraf dist lib && cross-env NODE_ENV=production rollup -c rollup.config.ts",
"build:types": "tsc -p tsconfig.type.json && api-extractor run && rimraf ./temp",
"start:example": "serve -l 8080 -C -n",
"serve": "npm-run-all --parallel start start:**",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --commit-path .",
"release": "ts-node --project tsconfig.build.json scripts/release.ts"
},
"publishConfig": {
"access": "public"
},
"files": [
"lib",
"dist"
],
"keywords": [
"signature",
"canvas",
"draw",
"canvas-draw"
],
"author": "ifake",
"license": "MIT",
"homepage": "https://github.com/ifakejs/signature",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.ts": [
"prettier --write --config .prettierrc.js \"src/**/*.{js,ts}\"",
"yarn run lint"
]
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@ifake/signature": "^0.5.3",
"@microsoft/api-extractor": "~7.13.3",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-typescript": "^8.1.0",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/fs-extra": "^9.0.6",
"@types/minimist": "^1.2.1",
"@types/node": "^14.14.16",
"@types/semver": "^7.3.4",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"chalk": "^4.1.0",
"codecov": "^3.8.1",
"conventional-changelog-cli": "^2.1.1",
"cross-env": "^7.0.2",
"enquirer": "^2.3.6",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"execa": "^5.0.0",
"fs-extra": "^9.0.1",
"husky": "^4.3.0",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.0",
"lint-staged": "^10.5.2",
"minimist": "^1.2.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.34.0",
"rollup-plugin-terser": "^7.0.2",
"semver": "^7.3.4",
"serve": "^11.3.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "~4.1.3",
"tslib": "^2.1.0",
"vuepress": "^1.8.0"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"@babel/runtime-corejs3": "^7.13.10"
}
}