-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.28 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.28 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
38
39
40
41
{
"name": "outside-click",
"version": "2.0.0",
"description": "Handle clicks outside a passed element.",
"main": "lib",
"scripts": {
"coverage": "node_modules/.bin/istanbul cover --hook-run-in-context node_modules/.bin/_mocha -- -R spec",
"test": "npm run mocha; npm run jshint; npm run jscs",
"mocha": "node_modules/.bin/_mocha",
"compile": "node_modules/.bin/babel --presets es2015,stage-0 -d lib/ src/",
"build": "./node_modules/.bin/webpack",
"prepublish": "npm run test; npm run compile; npm run build",
"jscs": "./node_modules/.bin/jscs src --esnext",
"jshint": "./node_modules/.bin/jshint src --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aloompa/outside-click.git"
},
"author": "Aloompa",
"license": "MIT",
"bugs": {
"url": "https://github.com/Aloompa/outside-click/issues"
},
"homepage": "https://github.com/Aloompa/outside-click#readme",
"devDependencies": {
"babel-cli": "^6.1.18",
"babel-loader": "^6.1.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"istanbul": "^0.4.0",
"jscs": "^2.5.1",
"jshint": "^2.8.0",
"mocha": "^2.3.3",
"questy": "^1.1.0",
"webpack": "^1.12.9"
},
"dependencies": {
"module-exporter": "^1.0.1"
}
}