-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.39 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@simpli/vue-await",
"version": "1.0.5",
"description": "Easy-to-use loading indicator",
"keywords": [],
"main": "lib/index.js",
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"author": "gil <[email protected]>",
"es2015": "lib-esm/index.js",
"repository": {
"type": "git",
"url": ""
},
"license": "MIT",
"engines": {
"node": ">=6.9"
},
"scripts": {
"cleanup": "shx rm -rf umd lib lib-esm types coverage",
"prebuild": "npm run cleanup && npm run verify",
"build": " tsc && tsc --target es2017 --outDir lib-esm && webpack && webpack --env.prod",
"test": "jest",
"test:watch": "npm test -- --watch",
"test:coverage": "npm test -- --coverage",
"test:only-changed": "npm test -- --bail --onlyChanged",
"ts:lint": "tslint --project tsconfig.json --format codeFrame",
"ts:lint:fix": "npm run ts:lint -- --fix",
"ts:format:base": "npm run prettier:ts -- {src,__{tests,mocks}__}/**/*.{ts,tsx}",
"ts:format": "npm run ts:format:base -- --list-different",
"ts:format:fix": "npm run ts:format:base -- --write",
"ts:style": "npm run ts:format && npm run ts:lint",
"ts:style:fix": "npm run ts:format:fix && npm run ts:lint:fix",
"verify": "npm run ts:style && npm test",
"cz": "git-cz",
"prettier:ts": "prettier --single-quote --print-width 120 --trailing-comma es5 --no-semi --parser typescript",
"precommit": "lint-staged",
"commitmsg": "validate-commit-msg",
"prepush": "npm run ts:style && npm run test:only-changed",
"prerelease": "npm run build",
"release": "standard-version",
"postrelease": "npm run release:github && npm run release:npm",
"release:github": "git push --no-verify --follow-tags origin master",
"release:npm": "npm publish",
"release:preflight": "irish-pub",
"release:preflight:package": "npm pack"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": "conventional-commit-types",
"maxSubjectLength": 120
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"npm run prettier:ts -- --write",
"npm run ts:lint:fix",
"git add"
]
},
"dependencies": {
"vue": "^2.6.10",
"vue-class-component": "^7.1.0",
"vue-property-decorator": "^7.2.0"
},
"devDependencies": {
"@types/jest": "24.0.11",
"@types/node": "10.11.7",
"awesome-typescript-loader": "5.2.1",
"commitizen": "4.0.3",
"cross-var": "1.1.0",
"css-loader": "1.0.0",
"cz-conventional-changelog": "2.1.0",
"gzip-size-cli": "3.0.0",
"hoek": "5.0.4",
"husky": "1.1.2",
"jest": "24.7.1",
"jest-serializer-vue": "2.0.2",
"lint-staged": "7.3.0",
"mini-css-extract-plugin": "0.4.4",
"node-sass": "4.13.1",
"prettier": "1.14.3",
"raw-loader": "0.5.1",
"sass-loader": "7.1.0",
"shx": "0.3.2",
"standard-version": "5.0.2",
"strip-json-comments-cli": "1.0.1",
"ts-jest": "24.0.2",
"ts-loader": "5.2.1",
"tslint": "5.11.0",
"tslint-config-prettier": "1.15.0",
"tslint-config-standard": "8.0.1",
"tslint-react": "3.6.0",
"typescript": "3.4.4",
"validate-commit-msg": "2.14.0",
"vue-jest": "2.6.0",
"vue-loader": "15.4.2",
"vue-template-compiler": "^2.6.10",
"webpack": "4.41.5",
"webpack-cli": "3.1.2"
},
"directories": {
"lib": "lib",
"test": "tests"
}
}