-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 950 Bytes
/
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
{
"name": "odometer_countup",
"version": "1.0.3",
"description": "Plugin for countUp.js with odometer or barrel style numbers",
"author": "Marcel Soler <[email protected]>",
"license": "MIT",
"main": "dist/odometer.min.js",
"types": "dist/odometer.d.ts",
"private": false,
"scripts": {
"build": "tsc && node utils/minify.js",
"start": "parcel demo.html --dist-dir tmp"
},
"dependencies": {
"countup.js": "^2.6.0"
},
"devDependencies": {
"parcel": "^2.8.3",
"tsify": "^5.0.4",
"typescript": "^4.9.5",
"uglify-js": "^3.17.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/msoler75/odometer_countup.js.git"
},
"bugs": {
"url": "https://github.com/msoler75/odometer_countup.js/issues"
},
"homepage": "https://github.com/msoler75/odometer_countup.js#readme",
"keywords": [
"counter",
"countup",
"countup.js",
"plugin",
"animation"
]
}