-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
136 lines (136 loc) · 4.54 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "vue-transition-component",
"version": "3.0.11",
"description": "Javascript transitions for Vue.js components",
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"prepublishOnly": "npm-run-all -s validate build",
"validate": "npm-run-all -p lint test",
"dev": "npm-run-all -p dev:*",
"dev:babel": "babel ./src -x \".ts\" --out-dir ./ --watch",
"dev:ts": "tsc --noEmit --allowJs --watch",
"build": "npm-run-all -s clean build:* doc:*",
"build:babel": "babel ./src -x \".ts\" -x \".js\" --out-dir ./",
"build:ts": "npm-run-all -s ts:build clean:tmp",
"ts:build": "tsc -p ./tsconfig.build.json && shx cp -Rf decl/* .",
"test": "cross-env NODE_ENV=test nyc mocha --exit \"./test/**/*.spec.{ts,js}\" ",
"test:dev": "mocha -w --watch-extensions ts,js \"./test/**/*.spec.{ts,js}\"",
"clean": "npm-run-all clean:*",
"clean:tmp": "shx rm -rf tmp",
"clean:test": "shx rm -rf coverage .nyc_output",
"clean:npm": "shx rm -rf lib tmp index.js",
"doc": "npm-run-all -p doc:*",
"doc:typedoc": "typedoc src/ --out docs/typedoc --mode file --exclude \"**/index.ts\" --name VueTransitionComponent --excludeExternals --excludePrivate --readme none",
"doc:mkdocs": "mkdocs build --clean --config-file ./docs/general/mkdocs.yml",
"deploy:mkdocs": "node ./build-tools/script/deploy-docs.js --platform=mkdocs --source=./docs/general/dist",
"deploy:typedoc": "node ./build-tools/script/deploy-docs.js --platform=typedoc --source=./docs/typedoc",
"deploy-docs": "npm-run-all doc \"deploy:* {@}\" --",
"serve-mkdocs": "mkdocs serve --config-file ./docs/general/mkdocs.yml",
"lint": "npm-run-all lint:*",
"lint:js": "eslint src --ext .js --cache",
"lint:ts": "tslint src/**/*.ts -c tslint.json -p tsconfig.json -t verbose",
"prettify": "prettier --write \"src/**/*.{js,ts,json}\"",
"precommit": "lint-staged"
},
"lint-staged": {
"gitDir": "./",
"linters": {
"src/**/*.{js,ts,json}": [
"prettier --write",
"git add"
],
"src/**/*.js": [
"npm run lint:js"
],
"src/**/*.ts": [
"npm run lint:ts"
]
}
},
"pre-push": [
"validate"
],
"author": "Lars van Braam <[email protected]> (larsvanbraam)",
"homepage": "http://www.github.com/larsvanbraam/vue-transition-component",
"license": "MIT",
"keywords": [
"seng",
"mediamonks",
"transition",
"vue"
],
"bugs": {
"url": "https://github.com/larsvanbraam/vue-transition-component/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/larsvanbraam/vue-transition-component.git"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-stage-3": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@babel/register": "^7.0.0",
"@types/chai": "^4.0.10",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.7",
"babel-eslint": "^8.0.3",
"babel-plugin-istanbul": "^5.1.1",
"chai": "^4.1.2",
"chalk": "^2.4.2",
"coveralls": "^3.0.3",
"cross-env": "^5.1.1",
"eslint": "^4.13.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-typescript": "^1.0.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.4.0",
"glob": "^7.1.3",
"gsap": "^2.1.1",
"husky": "^0.14.3",
"jsdom": "^13.2.0",
"jsdom-global": "^3.0.2",
"lint-staged": "^6.0.0",
"mocha": "^6.2.0",
"npm-run-all": "^4.1.2",
"nyc": "^13.3.0",
"prettier": "^1.9.2",
"shx": "^0.2.2",
"ssh2": "^0.8.2",
"tslint": "^5.8.0",
"tslint-config-airbnb": "^5.4.2",
"tslint-config-prettier": "^1.6.0",
"typedoc": "^0.14.2",
"typescript": "^3.5.1",
"vue": "^2.5.16",
"vue-types": "@1.5.0",
"yargs": "^12.0.5"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/runtime": "^7.3.4",
"bowser": "^2.5.2",
"confirm-simple": "^1.0.3",
"fs-extra": "^4.0.2",
"lodash": "^4.17.11",
"node-run-cmd": "^1.0.1",
"path": "^0.12.7",
"rimraf": "^2.6.2",
"scroll-tracker-component-manager": "^2.2.14",
"seng-disposable": "^1.1.3",
"seng-event": "^2.0.2",
"transition-controller": "^2.0.0"
},
"peerDependencies": {
"gsap": "^2.1.1",
"vue": "^2.5.16",
"vue-types": "^1.0.1"
}
}