-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
69 lines (69 loc) · 1.92 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
{
"name": "@jiaminghi/bezier-curve-dev",
"version": "0.0.9",
"author": "JiaMing <743192023@qq.com>",
"description": "Bezier curve extension",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/DataV-Team/BezierCurve.git"
},
"scripts": {
"clean": "rimraf lib dist es types",
"type:check": "tsc --noEmit",
"lint": "eslint --ext js,ts src test",
"format:check": "prettier --check .",
"format": "prettier --write .",
"build": "rollup -c",
"prepare": "npm run clean && npm run check && npm run build",
"test": "mocha",
"check": "npm run type:check && npm run lint && npm run format:check && npm run test"
},
"husky": {
"hooks": {
"pre-commit": "npm run check",
"pre-push": "npm run check"
}
},
"license": "MIT",
"bugs": {
"url": "https://github.com/DataV-Team/BezierCurve/issues"
},
"keywords": [
"bezierCurve",
"polyline",
"smoothline",
"length"
],
"homepage": "https://github.com/DataV-Team/BezierCurve#readme",
"dependencies": {
"@babel/runtime": "^7.5.5"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.6",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"@babel/preset-typescript": "^7.9.0",
"@babel/register": "^7.9.0",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.0",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"husky": "^4.2.5",
"mocha": "^6.2.3",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"rollup": "^2.6.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.0",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
}
}