forked from nuxt/loading-screen
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 997 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
{
"name": "@nuxt/screen",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/screens.git"
},
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces run poi --prod",
"bump": "yarn lerna version --yes --no-push",
"lint": "eslint .",
"prepublish": "yarn build && yarn lint",
"release": "yarn bump && git push --follow-tags && cd packages/loading && npm publish"
},
"devDependencies": {
"@nuxtjs/eslint-config": "latest",
"eslint": "latest",
"eslint-config-standard": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jest": "latest",
"eslint-plugin-node": "latest",
"eslint-plugin-promise": "latest",
"eslint-plugin-standard": "latest",
"eslint-plugin-vue": "latest",
"lerna": "latest",
"poi": "latest",
"standard-version": "latest",
"unfetch": "latest",
"vue": "latest",
"vue-template-compiler": "latest"
}
}