-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 923 Bytes
/
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
{
"name": "battleships",
"version": "0.0.0",
"description": "A simple implementation of the seafaring PVP game",
"repository": {
"type": "git",
"url": "git://github.com/liamness/battleships.git"
},
"browserslist": [
"last 2 versions",
"not < 0.25%",
"not UCAndroid > 0",
"not OperaMini all"
],
"devDependencies": {
"autoprefixer": "^7.1.2",
"cssnano": "^3.5.2",
"eslint": "^4.13.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"http-server": "^0.10.0",
"postcss-calc": "^6.0.0",
"postcss-cli": "^4.1.0",
"postcss-nested": "3.0.0",
"postcss-simple-vars": "^4.1.0"
},
"scripts": {
"build-css": "yarn postcss -w style.scss -o style.css",
"lint": "yarn eslint **/*.js",
"server": "yarn http-server",
"release": "git push origin master:gh-pages"
},
"license": "UNLICENSED",
"private": true
}