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 11
/
package.json
80 lines (80 loc) · 2.36 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "vue-fraction-grid",
"version": "1.1.0",
"description": "Flexbox based responsive fraction grid system for Vue.js",
"main": "dist/vue-fraction-grid.js",
"repository": "git@github.com:brtjkzl/vue-fraction-grid.git",
"author": "Bart Kozal <brtjkzl@gmail.com>",
"license": "MIT",
"scripts": {
"start": "npm run demo",
"demo": "vue build demo/index.js -o",
"docs": "vue build --config docs/config.js -o",
"build": "vue build --config docs/config.js --prod --dist '.gh-pages'",
"push-dir": "push-dir --dir='.gh-pages' --branch=gh-pages --force --cleanup --verbose",
"deploy": "npm run build && npm run push-dir",
"test": "jest --silent",
"lint": "npm run eslint && npm run stylelint",
"eslint": "eslint --ext .js,.vue vue-fraction-grid.js components utils",
"stylelint": "stylelint 'components/*.vue'",
"dist": "webpack --config webpack.dist.config.js --optimize-minimize"
},
"files": [
"vue-fraction-grid.js",
"components",
"utils",
"dist"
],
"keywords": [
"vue",
"vuejs",
"flexbox",
"grid"
],
"jest": {
"moduleNameMapper": {
"components/(.*)$": "<rootDir>/components/$1.vue",
"utils/(.*)$": "<rootDir>/utils/$1.js",
"(.*)$": "<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",
"babel-plugin-transform-object-assign": "^6.22.0",
"common-tags": "^1.4.0",
"eslint": "^3.15.0",
"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": "^18.1.0",
"jest-vue-preprocessor": "^0.1.2",
"normalize.css": "^5.0.0",
"postcss-color-function": "^3.0.0",
"postcss-cssnext": "^2.9.0",
"postcss-import": "^9.1.0",
"push-dir": "^0.4.1",
"sensible.css": "^1.0.2",
"stylelint": "^7.8.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-highlightjs": "^1.1.0",
"vue-loader": "^11.3.4",
"webpack": "^2.3.3"
},
"dependencies": {
"reduce-css-calc": "^1.3.0"
}
}