-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "countup.js",
"description": "Animates a numerical value by counting to it",
"version": "2.8.0",
"license": "MIT",
"author": "Jamie Perkins",
"main": "./dist/countUp.umd.js",
"module": "./dist/countUp.min.js",
"types": "./dist/countUp.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/inorganik/countUp.js.git"
},
"scripts": {
"build": "npm run clean && tsc && rollup -c rollup.config.mjs",
"clean": "rimraf dist/countUp.*",
"lint": "eslint -c .eslintrc.js --ext .ts ./src",
"serve": "http-server -o -c-1 ./",
"start": "npm run build && npm run serve",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rimraf": "^5.0.9",
"rollup": "^4.18.1",
"ts-jest": "^29.2.2",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.0"
}
}