-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.14 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": "@joemaddalone/path",
"version": "1.3.2",
"description": "a simple svg path generation utility",
"types": "dist/path.d.ts",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"scripts": {
"build": "npm run clean && npm run types && npm run compile",
"clean": "rm -rf dist",
"compile": "rollup -c",
"dev": "rollup -c -w",
"format": "prettier --write \"**/*.+(js|jsx|json)\"",
"lint": "eslint src",
"lint-fix": "eslint --fix src",
"test": "jest",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run clean && npm test && npm run build",
"predeploy": "cd demo && npm install && npx snowpack build",
"deploy": "gh-pages -d demo/build",
"types": "jsdoc -t node_modules/tsd-jsdoc/dist/ -d dist/ -r src/; mv dist/types.d.ts dist/path.d.ts; node scripts/addExportToDefs.js; exit 0",
"fix-types": "node scripts/addExportToDefs.js"
},
"keywords": [
"svg",
"path",
"arc",
"quadratic curve",
"cubic curve"
],
"files": [
"dist/**/*.js",
"dist/path.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/joemaddalone/path.git"
},
"author": "Joe Maddalone",
"license": "ISC",
"bugs": {
"url": "https://github.com/joemaddalone/path/issues"
},
"homepage": "https://joemaddalone.github.io/path/",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"gh-pages": "^3.2.3",
"husky": "^7.0.4",
"jest": "^27.4.4",
"jsdoc": "^3.6.7",
"lint-staged": "^12.1.2",
"prettier": "^2.5.1",
"rollup": "^2.61.1",
"rollup-plugin-terser": "^7.0.2",
"tsd-jsdoc": "^2.5.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.+(js|jsx|json)": [
"prettier --write"
],
"*.js": [
"eslint --fix"
]
},
"dependencies": {}
}