-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
package.json
74 lines (74 loc) · 1.88 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "progressbar.js",
"version": "1.1.1",
"description": "Responsive and slick progress bars with animated SVG paths",
"main": "dist/progressbar.js",
"dependencies": {
"lodash.merge": "^4.6.2",
"shifty": "^2.8.3"
},
"devDependencies": {
"bluebird": "^2.3.6",
"browserify": "^13.0.0",
"commander": "^2.4.0",
"concurrently": "^2.0.0",
"eslint": "^1.0.0",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-uglify": "^0.6.0",
"grunt-karma": "^2.0.0",
"grunt-shell": "^1.1.1",
"jscs": "^2.0.0",
"karma": "^2.0.2",
"karma-browserify": "^5.2.0",
"karma-mocha": "^1.3.0",
"karma-polyfill": "^1.1.0",
"karma-sauce-launcher": "^1.2.0",
"lodash": "^2.4.1",
"mocha": "^2.0.1",
"mustache": "^2.3.0",
"node-static": "^0.7.7",
"np": "^5.1.2",
"semver": "^4.1.0",
"shelljs": "^0.3.0",
"sinon": "~1.14.1",
"string": "^2.2.0",
"testem": "^1.6.0",
"watchify": "^3.9.0"
},
"scripts": {
"test": "./tools/test.sh",
"start": "npm run dev",
"dev": "concurrently 'npm run serve' 'grunt watch' 'open http://localhost:8080'",
"serve": "static ./local-dev -c 0",
"lint": "./tools/lint.sh",
"jscs": "jscs ./src ./test",
"eslint": "eslint --ext .js ./src ./test"
},
"repository": {
"type": "git",
"url": "git://github.com/kimmobrunfeldt/progressbar.js.git"
},
"author": "Kimmo Brunfeldt <[email protected]> (http://kimmobrunfeldt.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kimmobrunfeldt/progressbar.js/issues"
},
"homepage": "https://kimmobrunfeldt.github.io/progressbar.js/",
"keywords": [
"progress",
"bar",
"js",
"svg",
"circular",
"circle",
"pace",
"radial",
"line",
"loading",
"loader",
"semi-circle",
"indicator"
]
}