-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 826 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 826 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
{
"name": "alfred-workflow-nodejs",
"version": "2.0.4",
"description": "Alfred workflow nodejs module",
"author": "Giang Vo",
"main": "alfredNode.js",
"repository": {
"type": "git",
"url": "https://github.com/giangvo/alfred-workflow-nodejs"
},
"dependencies": {
"underscore": "^1.13.1",
"fuzzy": "*",
"keychain": "^1.3.0",
"node-osascript": "^2.1.0",
"node-persist": "0.0.11"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"mocha": "^9.1.2",
"sinon": "^11.1.2"
},
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec",
"lint": "eslint **/*.js",
"lint:fix": "eslint --fix **/*.js"
},
"keywords": [
"alfred",
"workflow"
]
}