-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
38 lines (38 loc) · 1.13 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
{
"name": "vue-justified-layout",
"version": "0.2.0",
"description": "Vue integration for Flickr's justified layout module",
"author": "codekraft-studio <[email protected]>",
"scripts": {
"prepublishOnly": "npm run build",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --target lib src/components/index.js",
"test": "vue-cli-service test:unit --coverage",
"lint": "vue-cli-service lint",
"docs:build": "vuepress build docs",
"docs:dev": "vuepress dev docs",
"test:unit": "vue-cli-service test:unit"
},
"main": "dist/vue-justified-layout.umd.js",
"files": [
"dist"
],
"dependencies": {
"justified-layout": "^3.0.0",
"vue": "^2.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.11.0",
"@vue/cli-plugin-eslint": "^3.11.0",
"@vue/cli-plugin-unit-jest": "^3.12.0",
"@vue/cli-service": "^3.11.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"coveralls": "^3.0.6",
"node-sass": "^4.12.0",
"sass-loader": "^7.0.0",
"vue-template-compiler": "^2.6.10",
"vuepress": "^1.1.0"
}
}