-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.34 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
{
"name": "wait-for-element-transition",
"version": "3.3.1",
"description": "Easily wait for an element to complete it's transition using native vanilla JavaScript",
"main": "dist/wait-for-element-transition.js",
"types": "dist/wait-for-element-transition.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"test": "karma start karma.conf.js && npm run lint",
"test-server": "karma start karma.conf.js --single-run=false",
"minify": "uglifyjs dist/wait-for-element-transition.js -o dist/wait-for-element-transition.min.js",
"build": "rm -rf dist/* && rollup -c && npm run minify",
"banner": "banner-cli dist/*.js",
"start": "rollup -c --watch",
"lint": "npm run lint:scripts && npm run lint:format",
"lint:scripts": "tslint '*.ts'",
"lint:format": "prettier --check '**/*'"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markcellus/wait-for-element-transition.git"
},
"engines": {
"node": ">=10.16"
},
"author": "Mark",
"keywords": [
"css transition",
"neon animation",
"css animation",
"polymer transition",
"element transition",
"js transition",
"javascript",
"wait for transition",
"wait transition",
"wait",
"polymer element",
"ember transition",
"transitions",
"react transition"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/markcellus/wait-for-element-transition/issues"
},
"homepage": "https://github.com/markcellus/wait-for-element-transition#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^8.0.3",
"@types/sinon": "^10.0.2",
"banner-cli": "0.14.3",
"chai": "^4.2.0",
"dotenv": "^10.0.0",
"husky": "^7.0.0",
"karma": "^6.1.1",
"karma-browserstack-launcher": "^1.6.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.0",
"karma-typescript": "^5.0.2",
"mocha": "^9.0.2",
"prettier": "^2.0.2",
"pretty-quick": "^3.0.0",
"rollup": "^2.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.30.0",
"sinon": "^11.1.1",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.15.0",
"typescript": "^4.2.2",
"uglify-es": "^3.3.9"
}
}