-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.44 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
{
"name": "wcal",
"version": "0.3.0",
"description": "a time-tracking cli derived from cal",
"main": "index.js",
"bin": {
"wcal": "./dist/bin/wcal"
},
"scripts": {
"dist": "rm -rf dist && webpack -p --progress --optimize-minimize",
"build": "webpack",
"bin": "node ./.build/bin/wcal",
"watch": "webpack -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=4.0.0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/reimertz/wcal.git"
},
"keywords": [
"time-tracking",
"wcal",
"ncal",
"cal",
"time",
"tracking",
"freelancer",
"hours"
],
"author": "Pierre Reimertz",
"license": "MIT",
"bugs": {
"url": "https://github.com/reimertz/wcal/issues"
},
"homepage": "https://github.com/reimertz/wcal",
"dependencies": {
"ansi-escapes": "^1.4.0",
"babel-runtime": "^6.11.6",
"chalk": "^1.1.3",
"fs-promise": "^2.0.0",
"immutable": "^3.8.1",
"minimist": "^1.2.0",
"moment": "^2.17.1",
"yamljs": "^0.2.8"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.14.0",
"babel-register": "^6.14.0",
"eslint": "^3.7.1",
"eslint-loader": "^1.5.0",
"webpack": "^1.13.2",
"webpack-node-externals": "^1.4.3"
}
}