This repository has been archived by the owner on Apr 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
62 lines (62 loc) · 1.63 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "vue-float-label",
"version": "1.6.1",
"description": "Float label pattern for Vue.js",
"main": "dist/vue-float-label.js",
"repository": "[email protected]:bkzl/vue-float-label.git",
"author": "Bartlomiej Kozal <[email protected]>",
"license": "MIT",
"scripts": {
"start": "npm run demo",
"demo": "vue build demo/index.js -o",
"test": "jest --silent",
"lint": "npm run eslint && npm run stylelint",
"eslint": "eslint --ext .js,.vue vue-float-label.js components",
"stylelint": "stylelint 'components/*.vue'",
"dist": "webpack --config webpack.dist.config.js --optimize-minimize"
},
"files": [
"vue-float-label.js",
"components",
"dist"
],
"keywords": [
"vue",
"vuejs",
"float",
"label"
],
"jest": {
"moduleNameMapper": {
"components/(.*)$": "<rootDir>/components/$1.vue",
"(.*)$": "<rootDir>/$1.js"
},
"moduleFileExtensions": [
"js",
"vue"
],
"transform": {
".*\\.js$": "babel-jest",
".*\\.vue$": "jest-vue-preprocessor"
}
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.4.1",
"eslint": "^3.16.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-html": "^2.0.1",
"eslint-plugin-promise": "^3.4.2",
"eslint-plugin-standard": "^2.0.1",
"jest": "^19.0.2",
"jest-vue-preprocessor": "^0.1.2",
"stylelint": "^7.9.0",
"stylelint-config-recess-order": "^1.0.0",
"stylelint-config-standard": "^16.0.0",
"stylelint-processor-html": "^1.0.0",
"vue-cli": "^2.8.1",
"vue-loader": "^11.3.4",
"webpack": "^2.3.3"
}
}