-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.75 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
{
"name": "ggj2021",
"version": "1.14.4",
"description": "Finder's Keplers",
"main": "index.js",
"repository": "github:SweetheartSquad/ggj2021",
"scripts": {
"start": "parcel index.html",
"build": "rm -rf .cache && rm -rf docs && parcel build index.html -d docs --no-source-maps --public-url ./",
"lint": "eslint ./src/**/*.{ts,tsx}",
"postversion": "npm run build"
},
"devDependencies": {
"@types/bresenham": "0.0.0",
"@types/lz-string": "^1.3.34",
"@types/seedrandom": "^2.4.28",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-preact": "^1.1.3",
"eslint-plugin-import": "^2.22.1",
"parcel": "^1.12.4",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.5.1",
"typescript": "^4.1.3"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"bresenham": "0.0.4",
"copy-to-clipboard": "^3.3.1",
"immer": "^8.0.1",
"line-intersect": "^3.0.0",
"lz-string": "^1.4.4",
"nanoid": "^3.1.20",
"preact": "^10.5.12",
"reset-css": "^5.0.1",
"seedrandom": "^3.0.5",
"tracery-grammar": "^2.7.4"
},
"release": {
"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"
]
}
]
]
}
}