-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
32 lines (32 loc) · 921 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
{
"name": "target-blank",
"version": "1.0.0",
"description": "A Chrome extension that makes links open in a new tab/window by default.",
"main": "background.js",
"scripts": {
"test": "mocha --reporter nyan --recursive 'tests/**.spec.js'",
"test:watch": "mocha --watch --reporter nyan --recursive 'tests/**.spec.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kerrykimrusso/target-blank.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kerrykimrusso/target-blank/issues"
},
"homepage": "https://github.com/kerrykimrusso/target-blank#readme",
"devDependencies": {
"chai": "4.1.2",
"eslint": "4.4.1",
"eslint-config-airbnb-base": "11.3.1",
"eslint-plugin-import": "2.7.0",
"mocha": "4.0.1",
"sinon": "^4.0.1",
"sinon-chai": "^2.14.0"
},
"dependencies": {
"mutation-summary": "^0.1.1"
}
}