-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.35 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
{
"name": "vue-themed-style-loader",
"version": "0.3.0",
"description": "Webpack loader to handle themed style builds of Vue.js applications",
"main": "index.js",
"scripts": {
"lint": "eslint --ext .js,.vue .",
"precommit": "npm run lint",
"prepush": "npm run lint && npm run test",
"test": "jest",
"watch": "npm-watch"
},
"watch": {
"test": {
"patterns": [
"."
],
"extensions": "js",
"quiet": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/brophdawg11/vue-themed-style-loader.git"
},
"keywords": [
"vue",
"style",
"theme",
"css"
],
"author": "matt@brophy.org",
"license": "MIT",
"bugs": {
"url": "https://github.com/brophdawg11/vue-themed-style-loader/issues"
},
"homepage": "https://github.com/brophdawg11/vue-themed-style-loader#readme",
"devDependencies": {
"eslint": "3.19.0",
"eslint-config-airbnb-base": "11.1.3",
"eslint-friendly-formatter": "2.0.7",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jest": "20.0.3",
"husky": "0.14.3",
"jest": "20.0.4",
"loader-utils": "1.1.0",
"lodash": "4.17.10",
"npm-watch": "0.2.0",
"vue-template-compiler": "2.5.16"
},
"peerDependencies": {
"loader-utils": "^1.1.0",
"lodash": "^4.17.4",
"vue-template-compiler": "^2.2.6"
}
}