-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.01 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.01 KB
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
{
"name": "intersect-rect",
"version": "1.0.0",
"description": "Check if two DOM elements intersect",
"main": "intersect-rect.js",
"scripts": {
"lint": "reset && eslint . || true",
"lint:watch": "onchange \"**/*.js\" -- npm run lint",
"test": "mocha --recursive \"**/*.spec.js\"",
"test:coverage": "istanbul cover _mocha \"**/*.spec.js\" -- -R spec",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Barry127/intersect-rect.git"
},
"keywords": [
"javascript",
"DOM",
"intersect",
"rectangles"
],
"author": "Barry de Kleijn <kleijn.barry@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Barry127/intersect-rect/issues"
},
"homepage": "https://github.com/Barry127/intersect-rect#readme",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-xo-space": "^0.16.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"onchange": "^3.2.1"
}
}