-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
67 lines (67 loc) · 1.51 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
{
"name": "vue-theme-loader",
"version": "2.0.3",
"description": "A webpack loader for supporting multi-site theming with vue.js",
"main": "index.js",
"author": "zephraph <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zephraph/vue-theme-loader/issues"
},
"homepage": "https://github.com/zephraph/vue-theme-loader#readme",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"lint": "tslint src/**/*.ts",
"release": "np --no-publish",
"precommit": "lint-staged",
"postcheckout": "yarn"
},
"lint-staged": {
"*.ts": [
"tslint"
]
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.spec)\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/zephraph/vue-theme-loader.git"
},
"keywords": [
"webpack",
"loader",
"vue",
"theme",
"theming"
],
"devDependencies": {
"@types/jest": "^23.0.0",
"@types/node": "^10.0.3",
"husky": "^0.14.0",
"jest": "^22.0.0",
"lint-staged": "^7.0.0",
"np": "^3.0.0",
"ts-jest": "^23.0.0",
"tslint": "^5.2.0",
"typescript": "^2.3.2",
"vue-template-compiler": "^2.2.0"
},
"dependencies": {
"loader-utils": "^1.1.0"
},
"peerDependencies": {
"vue-template-compiler": "^2.2.0"
}
}