-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "selection-shield",
"version": "1.0.0",
"description": "Block browsers from hooking into text selection events",
"main": "index.js",
"scripts": {
"test": "ava",
"test:watch": "ava --watch",
"build": "node scripts/build",
"clean": "rimraf dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aquibm/selection-shield.git"
},
"keywords": [
"selection",
"shield",
"chrome",
"extension"
],
"author": "Aquib Master <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aquibm/selection-shield/issues"
},
"homepage": "https://github.com/aquibm/selection-shield#readme",
"devDependencies": {
"ava": "^0.18.1",
"bestzip": "^1.1.3",
"browser-env": "^2.0.20",
"mkdirp": "^0.5.1",
"rimraf": "^2.5.4"
},
"ava": {
"require": [
"./test/helpers/setup-browser-env.js"
]
}
}