-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
72 lines (72 loc) · 1.91 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
{
"name": "blobs",
"version": "2.3.0",
"description": "Random blob generation and animation",
"author": "g-harel",
"license": "MIT",
"main": "index.js",
"module": "index.module.js",
"types": "index.d.ts",
"scripts": {
"prepack": "npm run build",
"postpublish": "npm run clean",
"build": "npm run clean && rollup -c rollup.config.mjs",
"clean": "trash '**/*.js' '**/*.js.map' '**/*.d.ts' '!**/node_modules/**/*' '!rollup.config.mjs'",
"fmt": "prettier --list-different --write --ignore-path .gitignore '**/*.{js,ts,md,html}' '!index.html'",
"demo:dev": "parcel demo/index.html --open",
"demo:build": "parcel build demo/index.html && move-file dist/index.html index.html",
"test": "jest",
"test:playground": "parcel internal/animate/testing/index.html --open"
},
"dependencies": {
"simplex-noise": "^4.0.1"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/jest": "25.1.4",
"jest": "29.5.0",
"jest-canvas-mock": "2.5.0",
"move-file-cli": "2.0.0",
"parcel": "1.12.3",
"parcel-plugin-inliner": "1.0.14",
"path2d-polyfill": "^2.0.1",
"prettier": "2.0.2",
"rollup": "3.8.1",
"rollup-plugin-copy": "3.4.0",
"rollup-plugin-typescript2": "0.34.1",
"rollup-plugin-uglify": "6.0.1",
"trash-cli": "3.0.0",
"ts-jest": "29.1.0",
"tslib": "2.4.1",
"typescript": "4.9.4"
},
"homepage": "https://blobs.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/g-harel/blobs"
},
"bugs": {
"url": "https://github.com/g-harel/blobs/issues"
},
"keywords": [
"random",
"blob",
"svg",
"path",
"canvas",
"animation"
],
"prettier": {
"tabWidth": 4,
"printWidth": 100,
"trailingComma": "all",
"bracketSpacing": false,
"arrowParens": "always"
},
"jest": {
"preset": "ts-jest",
"setupFiles": [
"jest-canvas-mock"
]
}
}