forked from HubSpot/odometer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.81 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.81 KB
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
{
"name": "tm-odometer-lib",
"description": "TmOdometer: Lightweight JavaScript library for animated numeric counters with smooth transitions and precise decimal handling.",
"author": "Marco Trinastich <mt.marco87@gmail.com>",
"contributors": [
"Adam Schwartz <adam.flynn.schwartz@gmail.com>",
"Zack Bloom <zackbloom@gmail.com>"
],
"license": "MIT",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/mtmarco87/tm-odometer.git"
},
"bugs": {
"url": "https://github.com/mtmarco87/tm-odometer/issues"
},
"homepage": "https://github.com/mtmarco87/tm-odometer#readme",
"private": true,
"scripts": {
"build": "npm run build:library && npm run build:legacy && npm run build:themes",
"build:library": "rollup -c",
"build:legacy": "grunt coffee && grunt terser:coffee",
"build:themes": "grunt compass",
"dev": "npm-run-all --parallel dev:library dev:legacy",
"dev:library": "rollup -c -w",
"dev:legacy": "grunt watch",
"link": "node scripts/npm-utils.js link",
"pack": "node scripts/npm-utils.js pack",
"publish": "node scripts/npm-utils.js publish",
"clean": "rimraf dist"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"coffee-script": "~1.6.3",
"color": "^5.0.0",
"fs-extra": "^11.3.0",
"glob": "^11.0.2",
"grunt": "^1.6.1",
"grunt-cli": "^1.5.0",
"grunt-contrib-coffee": "^2.1.0",
"grunt-contrib-compass": "^1.1.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-terser": "^2.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"rollup": "^2.79.2",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
}
}