-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.64 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
{
"name": "sketch-to-lineart",
"version": "1.10.0",
"description": "tool for converting sketches to transparent lineart",
"main": "index.js",
"scripts": {
"start": "parcel index.html",
"build": "npm run build:cleanup && npm run build:parcel && npm run build:sw",
"build:cleanup": "rm -rf .cache && rm -rf docs",
"build:parcel": "parcel build index.html -d docs --no-source-maps --public-url ./",
"build:sw": "workbox generateSW",
"postversion": "npm run build"
},
"author": "Sean S. LeBlanc <sean.s.leblanc@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/seleb/sketch-to-lineart.git"
},
"devDependencies": {
"@types/file-saver": "^2.0.5",
"parcel": "^1.12.4",
"parcel-bundler": "^1.12.5",
"typescript": "^5.2.2",
"workbox-cli": "^7.0.0"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"canvas-toBlob": "^1.0.0",
"dialog-polyfill": "^0.5.6",
"file-saver": "^2.0.5",
"preact": "^10.18.1",
"reset-css": "^5.0.2"
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"docs/*",
"README.md",
"CHANGELOG.md",
"package.json",
"package-lock.json"
]
}
]
]
}
}