-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.51 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "vue-imagefill",
"version": "0.2.1",
"description": "The Vue directive for making images fill their containers",
"main": "./dist/main.js",
"scripts": {
"lint": "eslint --ext .js lib --ignore-pattern dist",
"dist": "npm run lint&&webpack",
"precommit": "npm run dist"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:ddvjs/vue-imagefill.git"
},
"keywords": [
"vue-imagefill",
"imagefill",
"vue-directive",
"vue"
],
"author": "Hadi Chan",
"license": "ISC",
"bugs": {
"url": "https://github.com/ddvjs/vue-imagefill/issues"
},
"jshintConfig": {
"esversion": 6,
"undef": true,
"unused": true,
"node": true,
"predef": [
"module",
"require",
"console",
"process"
]
},
"homepage": "https://github.com/ddvjs/vue-imagefill#readme",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-component": "^1.1.1",
"babel-preset-es2015": "^6.22.0",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-html": "^4.0.3",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^3.1.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"style-loader": "^0.21.0",
"vue": "^2.5.16",
"vue-loader": "^15.7.1",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-node-externals": "^1.5.4"
}
}