This repository has been archived by the owner on May 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.03 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
{
"name": "vue-strict-prop",
"version": "0.3.6",
"description": "strict-typed prop builder for Vue component",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"jest": "jest",
"prettier": "prettier \"{src,test/jest}/**/*.ts\" --list-different",
"prettier:fix": "prettier \"{src,test/jest}/**/*.ts\" --write",
"eslint": "eslint \"{src,test/jest}/**.*.ts\"",
"eslint:fix": "eslint \"{src,test/jest}/**.*.ts\" --fix",
"test": "npm-run-all prettier eslint jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wonderful-panda/vue-strict-prop.git"
},
"keywords": [
"Vue",
"TypeScript"
],
"author": "Hidetaka Iwata <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wonderful-panda/vue-strict-prop/issues"
},
"homepage": "https://github.com/wonderful-panda/vue-strict-prop#readme",
"devDependencies": {
"@types/jest": "^24.0.11",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"eslint": "^6.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"hoek": "^6.1.3",
"jest": "^24.7.1",
"merge": "^2.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.0",
"randomatic": "^3.1.1",
"ts-jest": "^24.0.2",
"ts-loader": "^5.3.3",
"typescript": "3.4.3",
"vue": "2.6.10",
"vue-template-compiler": "2.6.10",
"vue-test-utils": "1.0.0-beta.11"
},
"peerDependencies": {
"typescript": ">=2.9.1",
"vue": "^2.5.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"json"
],
"setupFiles": [
"<rootDir>/test/jest/setup.ts"
],
"moduleNameMapper": {
"^vue$": "<rootDir>/node_modules/vue/dist/vue.js"
},
"testRegex": "test/jest/(.*)\\.test.ts$",
"transform": {
"^.+\\.ts$": "ts-jest"
}
}
}