-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.1 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
{
"name": "jprogress",
"title": "jProgress.js",
"description": "Simple slim lightweight(<2KB) JavaScript progress bar plugin",
"version": "1.2.1",
"license": "MIT",
"author": {
"name": "Robert Velickovski",
"email": "roby@rvdizajn.com"
},
"main": "dist/js/index.js",
"repository": {
"type": "git",
"url": "https://github.com/robiveli/jprogress.git"
},
"keywords": [
"progress",
"vanilla",
"simple",
"dependency-free",
"lightweight",
"javascript"
],
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"grunt": "^1.0.4",
"grunt-babel": "^8.0.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-minify-html": "^3.0.0",
"grunt-umd": "^3.0.0",
"load-grunt-tasks": "^5.1.0"
},
"scripts": {
"dev": "grunt watch",
"build": "grunt build"
},
"dependencies": {
"grunt-contrib-uglify-es": "github:gruntjs/grunt-contrib-uglify#harmony"
}
}