-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 995 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
36
37
38
39
40
41
42
{
"name": "screen-size",
"version": "1.0.0",
"description": "Check your device screen size",
"author": "Hugo Matalonga <hmatalonga@gmail.com>",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"deploy": "DEPLOY_ENV=GH_PAGES nuxt generate && push-dir --dir=dist --branch=gh-pages --cleanup",
"test": "ava"
},
"dependencies": {
"nuxt": "^1.0.0"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-eslint": "^8.2.1",
"eslint": "^4.15.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-vue": "^4.0.0",
"jsdom": "^11.9.0",
"node-sass": "^4.8.3",
"push-dir": "^0.4.1",
"sass-loader": "^7.0.1"
},
"ava": {
"require": [
"babel-register"
]
},
"babel": {
"presets": [
"env"
]
}
}