-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.93 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": "okageo",
"version": "3.1.9",
"description": "parse SVG to polygons",
"main": "./dist/okageo.js",
"module": "./dist/okageo.mjs",
"types": "./dist/okageo.d.ts",
"author": "miyanokomiya",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/miyanokomiya/okageo.git"
},
"keywords": [
"svg"
],
"sideEffects": false,
"packageManager": "[email protected]",
"scripts": {
"lint:es": "yarn eslint ./src ./test ./demo ./*.js --ext .js,.ts",
"lint:json": "yarn prettier -c ./*.json ./.*.json",
"lint": "yarn lint:es && yarn lint:json",
"lint:fix": "yarn lint:es --fix && yarn lint:json --write",
"test": "jest --coverage",
"build": "rm -rf ./dist && yarn rollup -c",
"demo": "parcel",
"build:demo": "rm -rf ./dist-demo && parcel build",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@parcel/transformer-typescript-tsc": "^2.8.3",
"@types/jest": "^28.1.3",
"@types/node": "^20.1.4",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.11.0",
"babel-jest": "^29.0.1",
"coveralls": "^3.1.1",
"esbuild": "^0.19.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.1",
"jest-environment-jsdom": "^29.0.1",
"parcel": "^2.8.3",
"prettier": "^2.4.0",
"rollup": "^3.2.3",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-esbuild": "^6.1.0",
"ts-jest": "^28.0.5",
"tslib": "^2.3.1",
"typescript": "^5.0.4"
},
"targets": {
"main": false,
"module": false,
"types": false,
"default": {
"source": "./demo/index.html",
"distDir": "./dist-demo",
"publicUrl": ".",
"optimize": false,
"scopeHoist": false
}
}
}