forked from g-harel/blobs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.94 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
{
"name": "blobs",
"version": "2.2.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.js",
"clean": "trash '**/*.js' '**/*.js.map' '**/*.d.ts' '!**/node_modules/**/*' '!rollup.config.js'",
"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"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"husky": "^4.3.8",
"jest": "^25.1.0",
"jest-canvas-mock": "^2.2.0",
"move-file-cli": "^2.0.0",
"parcel": "^1.12.4",
"parcel-plugin-inliner": "^1.0.14",
"prettier": "^2.0.2",
"rollup": "^1.1.0",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-typescript2": "^0.26.0",
"rollup-plugin-uglify": "^6.0.1",
"trash-cli": "^3.0.0",
"ts-jest": "^25.2.1",
"tslib": "^1.9.3",
"typescript": "^3.1.3"
},
"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"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn run fmt && yarn run test && yarn run demo:build && git add -A ."
}
}
}