-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 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
{
"name": "four-in-line",
"version": "1.0.0",
"description": "Four-in-line game on cavas",
"main": "src/main.js",
"devDependencies": {
"@babel/core": "^7.9.0",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-replace": "^2.3.1",
"local-web-server": "^4.0.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.1.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-workbox-inject": "^1.0.1"
},
"scripts": {
"start": "npm-run-all --parallel serve watch",
"watch": "rollup -c -w",
"build": "rollup -c",
"serve": "ws -d public --blacklist '/.(.*)'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cutiful/four-in-line.git"
},
"keywords": [
"four-in-line",
"canvas",
"game"
],
"author": "cutiful",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/cutiful/four-in-line/issues"
},
"homepage": "https://github.com/cutiful/four-in-line#readme",
"dependencies": {
"workbox-precaching": "^5.1.1"
}
}