forked from inorganik/countUp.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 868 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
{
"name": "countup.js",
"description": "Animates a numerical value by counting to it",
"version": "2.0.4",
"license": "MIT",
"main": "./dist/countUp.min.js",
"author": "@inorganik",
"repository": {
"type": "git",
"url": "git+https://github.com/inorganik/countUp.js.git"
},
"scripts": {
"build": "npm run clean && tsc && gulp",
"clean": "gulp clean",
"lint": "tslint --project tsconfig.json",
"test": "jest",
"test:watch": "jest --watch",
"serve": "http-server ./"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^24.0.6",
"browserify": "^16.2.3",
"del": "^3.0.0",
"gulp": "^4.0.0",
"gulp-concat": "^2.6.1",
"gulp-uglify": "^3.0.2",
"http-server": "^0.11.1",
"jest": "^24.1.0",
"ts-jest": "^24.0.0",
"tslint": "^5.12.1",
"typescript": "^3.3.3",
"uglify-es": "^3.3.9"
},
"types": "./dist/countUp.d.ts"
}