-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.38 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
{
"name": "magic-8-ball",
"version": "1.0.0",
"description": "It has all the answers",
"main": "app.ts",
"browserslist": [
"last 1 Chrome version"
],
"scripts": {
"start": "parcel ./src/index.html",
"build": "parcel build src/index.html --public-url './' --no-minify --no-source-maps",
"css-types": "css-types",
"test": "testyts",
"deploy": "gh-pages -d dist",
"testyts": "testyts"
},
"staticFiles": {
"staticPath": [
"src/static/icons",
"src/manifest.json"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bwca/magic-8-ball.git"
},
"keywords": [
"magic",
"predictions",
"ball 8",
"magic 8 ball",
"8 ball"
],
"author": "Volodymyr Yepishev",
"license": "ISC",
"bugs": {
"url": "https://github.com/Bwca/magic-8-ball/issues"
},
"homepage": "https://github.com/Bwca/magic-8-ball#readme",
"devDependencies": {
"@types/node": "^13.13.5",
"css-types": "^1.0.2",
"gh-pages": "^4.0.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.6.0",
"prettier": "^2.7.1",
"pug": "^2.0.4",
"sass": "^1.26.5",
"testyts": "^1.5.0",
"tslint": "^6.1.2",
"typescript": "^3.8.3"
},
"dependencies": {
"@merry-solutions/debounce": "^1.0.1",
"@types/pug": "^2.0.4",
"fork-magic-8-ball": "file:fork-magic-8-ball-1.4.0.tgz"
}
}