-
Notifications
You must be signed in to change notification settings - Fork 1k
/
package.json
43 lines (43 loc) · 986 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
39
40
41
42
43
{
"name": "spin.js",
"version": "4.1.2",
"description": "A spinning activity indicator",
"files": [
"spin.css",
"spin.d.ts",
"spin.js",
"SpinnerOptions.d.ts"
],
"type": "module",
"main": "spin.js",
"types": "spin.d.ts",
"author": "Felix Gnass <[email protected]>",
"contributors": [
"Theodore Brown (https://github.com/theodorejb)",
"Timothy Gu <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/fgnass/spin.js.git"
},
"keywords": [
"css",
"progress indicator",
"spin",
"spinner"
],
"scripts": {
"prepare": "tsc && grunt --gruntfile Gruntfile.cjs && rollup -c",
"gh-pages": "grunt gh-pages --gruntfile Gruntfile.cjs",
"start": "serve site/"
},
"devDependencies": {
"grunt": "^1.6.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-gh-pages": "^4.0.0",
"rollup": "^4.18.1",
"serve": "^14.2.3",
"typescript": "^5.5.3"
}
}