-
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) · 806 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 806 Bytes
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": "rightclick",
"description": "Cut, copy, paste and delete for node.js",
"version": "0.7.2",
"keywords": [
"cut",
"copy",
"paste",
"delete",
"tap"
],
"author": {
"name": "Matthew O'Donoghue"
},
"main": "./lib/rightClick.js",
"repository": {
"type": "git",
"url": "https://github.com/mattyod/rightclick"
},
"bugs": {
"url": "https://github.com/mattyod/rightclick/issues"
},
"dependencies": {
"col": "0.1.0",
"underscore": "1.7.0"
},
"devDependencies": {
"nodeunit": "0.9.0",
"jshint": "2.5.5"
},
"scripts": {
"hooks": "chmod +x hooks/*; cd .git/hooks && ln -sf ../../hooks/* .",
"lint": "./node_modules/jshint/bin/jshint ./",
"unit": "nodeunit test",
"test": "npm run lint && npm run unit"
}
}