-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1012 Bytes
/
package.json
File metadata and controls
50 lines (50 loc) · 1012 Bytes
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
{
"name": "strider-bower",
"version": "0.1.5",
"description": "Bower install/cache plugin for Strider",
"main": "worker.js",
"scripts": {
"lint": "eslint *.js lib",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/Strider-CD/strider-bower.git"
},
"keywords": [
"strider",
"bower",
"cache",
"install",
"dependencies"
],
"engines": {
"node": ">=4.2"
},
"author": "",
"license": "MIT",
"homepage": "https://github.com/Strider-CD/strider-bower",
"bugs": {
"url": "https://github.com/Strider-CD/strider-bower/issues"
},
"strider": {
"id": "bower",
"type": "job",
"title": "Bower",
"webapp": "webapp.js",
"worker": "worker.js",
"icon": "icon.png",
"config": {
"controller": "BowerController"
}
},
"dependencies": {
"MD5": "^1.2.1",
"async": "^2.1.4",
"bower": "^1.6.3",
"debug": "^2.2.0"
},
"devDependencies": {
"eslint": "^4.1.0"
}
}