-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
52 lines (52 loc) · 1.47 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
{
"name": "openframe-image",
"version": "0.2.3",
"description": "Openframe extension which adds support for images via fbi.",
"main": "extension.js",
"scripts": {
"install": "./install.sh",
"uninstall": "./uninstall.sh",
"patch-release": "npm version patch && npm publish && git push --follow-tags",
"lint": "./node_modules/.bin/eslint extension.js test/**",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test": "npm run lint && ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha",
"test-coveralls": "npm run lint && ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec && npm run coveralls"
},
"keywords": [
"openframe",
"extension",
"format",
"openframe-extension",
"openframe-image"
],
"author": {
"name": "Jonathan Wohl",
"url": "http://jonathanwohl.com"
},
"contributors": [
{
"name": "Jonathan Wohl",
"url": "http://jonathanwohl.com"
},
{
"name": "Ishac Bertran",
"url": "http://ishacbertran.com"
}
],
"license": "GPL-3.0",
"devDependencies": {
"coveralls": "^2.11.9",
"eslint": "^2.8.0",
"istanbul": "^0.4.2",
"mocha": "^2.3.4",
"sinon": "^1.17.2"
},
"repository": {
"type": "git",
"url": "https://github.com/OpenframeProject/Openframe-Image"
},
"dependencies": {
"openframe-extension": "^0.1.0",
"debug": "^2.2.0"
}
}