-
Notifications
You must be signed in to change notification settings - Fork 868
/
package.json
43 lines (43 loc) · 1.13 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
{
"name": "ladda",
"version": "2.0.3",
"description": "Buttons with built-in loading indicators",
"homepage": "https://lab.hakim.se/ladda/",
"files": [
"css/*.scss",
"dist/*.css",
"js/ladda.d.ts",
"js/ladda.js"
],
"type": "module",
"main": "./js/ladda.js",
"types": "./js/ladda.d.ts",
"scripts": {
"test": "grunt jshint --gruntfile Gruntfile.cjs",
"prepare": "grunt --gruntfile Gruntfile.cjs && rollup -c",
"start": "grunt serve --gruntfile Gruntfile.cjs"
},
"author": "Hakim El Hattab <[email protected]> https://hakim.se",
"contributors": [
"Theodore Brown <[email protected]> https://theodorejb.me"
],
"repository": {
"type": "git",
"url": "git://github.com/hakimel/Ladda.git"
},
"devDependencies": {
"grunt": "^1.4.1",
"grunt-contrib-connect": "^3.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^3.1.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-sass": "^3.1.0",
"rollup": "^2.60.2",
"rollup-plugin-node-resolve": "^5.2.0",
"sass": "^1.44.0"
},
"license": "MIT",
"dependencies": {
"spin.js": "^4.1.1"
}
}