-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.35 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
{
"name": "bepo",
"version": "1.0.1",
"description": "Functions for publishing content to a git backed blog.",
"main": "index.js",
"scripts": {
"tape": "tape test/*.js",
"tap-spec": "tape test/*.js | tap-spec",
"test": "istanbul cover tape test/*.js | tap-spec",
"standard": "standard --verbose",
"submitCover": "cat coverage/lcov.info | codeclimate",
"travis": "npm test && npm run submitCover",
"tester": "nodemon -i coverage --exec 'npm --silent run cover'"
},
"repository": {
"type": "git",
"url": "[email protected]:bcomnes/bepo.git"
},
"keywords": [
"git",
"blog",
"repo"
],
"author": {
"name": "Bret Comnes",
"url": "http://bret.io",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/bcomnes/bepo/issues"
},
"homepage": "https://github.com/bcomnes/bepo",
"dependencies": {
"array-series": "^0.1.5",
"normalize-git-url": "^1.0.0",
"quick-gits": "^1.0.4"
},
"devDependencies": {
"codeclimate-test-reporter": "^0.0.4",
"istanbul": "^0.3.5",
"mkdirp": "^0.5.0",
"nodemon": "^1.2.1",
"rimraf": "^2.2.8",
"standard": "^2.6.2",
"tap-spec": "^2.1.2",
"tape": "^3.0.3"
},
"jshintConfig": {
"node": true,
"jquery": false,
"strict": false,
"globalstrict": false,
"asi": true
}
}