-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.61 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": "proto-arrows",
"version": "0.1.3",
"description": "Utility functions for drawing beautiful arrows using cubic bezier paths",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"scripts": {
"lint": "eslint src/**/*.ts",
"watch": "parcel watch",
"build": "parcel build",
"test": "jest",
"prepare": "npm run build",
"release": "npm run lint && npm run test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"keywords": [
"arrow",
"path",
"cubic-bezier",
"prototyping",
"svg"
],
"author": "Kristian Muñiz <contact@krismuniz.com> (https://krismuniz.com)",
"homepage": "https://github.com/krismuniz/proto-arrows",
"repository": {
"type": "git",
"url": "https://github.com/krismuniz/proto-arrows"
},
"files": [
"dist",
"src"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@parcel/packager-ts": "^2.3.2",
"@parcel/transformer-typescript-types": "^2.3.2",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"jest": "^27.5.1",
"parcel": "^2.3.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}