forked from g-harel/blobs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
{
"name": "blobs",
"version": "1.0.3",
"description": "svg blob generator",
"author": "g-harel",
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"prepack": "npm run build",
"postpublish": "npm run clean",
"build": "npm run clean && rollup -c rollup.config.ts",
"clean": "trash '**/*.js' '**/*.js.map' '**/*.d.ts' '!**/node_modules/**/*'",
"fmt": "prettier --list-different --write --ignore-path .gitignore '**/*.{js,ts}'"
},
"devDependencies": {
"prettier": "^1.14.2",
"rollup": "^1.1.0",
"rollup-plugin-typescript2": "^0.18.1",
"rollup-plugin-uglify": "^6.0.1",
"trash-cli": "^1.4.0",
"tslib": "^1.9.3",
"typescript": "^3.1.3"
},
"homepage": "https://github.com/g-harel/blobs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/g-harel/blobs"
},
"bugs": {
"url": "https://github.com/g-harel/blobs/issues"
},
"keywords": [
"svg",
"blob"
],
"prettier": {
"tabWidth": 4,
"printWidth": 100,
"trailingComma": "all",
"bracketSpacing": false,
"arrowParens": "always"
}
}