-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
73 lines (73 loc) · 1.98 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "reminders-cli",
"description": "Command-line interface that uses natural language processing to parse phrases and interact with Reminders.app.",
"version": "0.1.0",
"author": {
"name": "Lucas Bento",
"email": "[email protected]",
"url": "https://github.com/lucasbento"
},
"bin": {
"reminders": "./bin/reminders",
"remind": "./bin/reminders"
},
"bugs": "https://github.com/lucasbento/reminders-cli/issues",
"dependencies": {
"applescript-promise": "^0.0.1",
"blessed": "^0.1.81",
"boxen": "^1.2.1",
"chalk": "^2.1.0",
"chrono-node": "^1.3.5",
"inquirer": "^3.2.2",
"meow": "^3.7.0",
"moment": "^2.18.1",
"ora": "^1.3.0",
"update-notifier": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-jest": "^19.0.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-0": "^6.22.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"jest": "^20.0.4"
},
"homepage": "https://github.com/lucasbento/reminders-cli#readme",
"keywords": [
"apple",
"applescript",
"mac",
"node",
"osascript",
"osx",
"reminder",
"reminders"
],
"license": "MIT",
"main": "index.js",
"preferGlobal": true,
"repository": {
"type": "git",
"url": "http://github.com/lucasbento/reminders-cli"
},
"engines": {
"node": ">=4.4.7"
},
"jest": {
"setupTestFrameworkScriptFile": "./test/index.js"
},
"scripts": {
"build": "npm run clear && babel src --ignore *.spec.js,__tests__,__mocks__ --out-dir dist --copy-files",
"clear": "rm -rf ./dist",
"lint": "eslint ./src",
"prepublish": "npm run build",
"test": "npm run lint && jest --runInBand",
"ci": "npm run lint && NODE_ENV=CI jest --runInBand",
"watch": "babel --ignore *.spec.js,__tests__,__mocks__ -w -d ./dist ./src --copy-files"
}
}