-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 1.91 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
{
"name": "vue-media-loader",
"version": "0.1.3",
"author": "katashin",
"description": "Enable `media` attribute on Vue SFC styles",
"keywords": [
"Vue",
"Single File Component",
"webpack",
"loader",
"style",
"css",
"media",
"media query"
],
"license": "MIT",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"homepage": "https://github.com/ktsn/vue-media-loader",
"bugs": "https://github.com/ktsn/vue-media-loader/issues",
"repository": {
"type": "git",
"url": "https://github.com/ktsn/vue-media-loader.git"
},
"scripts": {
"prepublishOnly": "npm run clean && npm run test && npm run build",
"clean": "rm -rf lib",
"build": "tsc -p src",
"dev": "jest --watch",
"example": "webpack --config example/webpack.config.js",
"lint": "tslint -p . && prettier --list-different \"{src,scripts,test}/**/*.{js,ts}\"",
"format": "prettier --write \"{src,scripts,test}/**/*.{js,ts}\"",
"test": "npm run lint && npm run test:unit",
"test:unit": "jest"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "/test/.+\\.spec\\.(js|ts)$",
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"globals": {
"ts-jest": {
"tsConfig": "test/tsconfig.json"
}
}
},
"devDependencies": {
"@types/jest": "^26.0.3",
"@types/loader-utils": "^2.0.0",
"@types/webpack": "^4.39.1",
"css-loader": "^4.2.0",
"jest": "^25.1.0",
"prettier": "2.1.2",
"ts-jest": "^25.0.0",
"tslint": "^5.11.0",
"tslint-config-ktsn": "^2.1.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.1",
"vue": "^2.5.17",
"vue-loader": "^15.4.1",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"loader-utils": "^2.0.0"
}
}