-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 925 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
44
45
46
47
{
"name": "app",
"version": "0.0.0",
"homepage": "http://{githubUrl}",
"author": "{authorName} <{authorEmail}> (http://github.com/{githubLogin})",
"bugs": {
"url": "http://{githubUrl}/issues"
},
"repository": {
"type": "git",
"url": "git://{githubUrl}.git"
},
"engines": {
"node": ">= 0.8.0"
},
"bin": {
"{app}": "bin/{app}"
},
"dependencies": {
"q": "*",
"coa": "*",
"update-notifier": "*"
},
"devDependencies": {
"chai": "*",
"chai-as-promised": "*",
"istanbul": "*",
"mocha-as-promised": "*",
"mocha-istanbul": "*",
"mocha": "*",
"coveralls": "*"
},
"peerDependecies": {
"bem": ">= 1.0.0-alpha1 < 2.0.0"
},
"optionalDependencies": {},
"scripts": {
"test": "make test",
"coverage": "make coverage"
},
"licenses": [
{
"type": "MIT",
"url": "http://{githubUrl}/raw/master/LICENSE"
}
]
}