-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.07 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
{
"name": "@rdme/curve-2d",
"version": "0.0.0",
"description": "2d curves in typescript",
"main": "dist/main.js",
"module": "dist/main.ejs.js",
"scripts": {
"build": "rollup -c rollup.config.js",
"build:watch": "rollup -wc rollup.config.js",
"clean": "rimraf dist docs coverage",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint --ignore-path .gitignore --ext .ts .",
"lint:fix": "eslint --ignore-path .gitignore --ext .ts . --fix"
},
"keywords": [
"2d",
"bezier",
"catmull",
"arc",
"math",
"typescript"
],
"author": "Propero Team <[email protected]>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.4",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^27.5.0",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^28.1.3",
"jest-preset-typescript": "^1.2.0",
"lint-staged": "^12.4.1",
"lodash": "^4.17.21",
"prettier": "^2.6.2",
"rollup": "^2.72.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.0.2",
"rollup-plugin-ts-paths": "^1.0.5",
"semantic-release": "^19.0.2",
"ts-jest": "^28.0.7",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
},
"files": [
"src",
"dist",
"*.md",
".gitignore"
],
"directories": {
"lib": "dist",
"test": "test"
}
}