-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 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
{
"name": "whatodo",
"version": "0.4.21",
"description": "A TODO collector, organizer, and task manager",
"main": "index.js",
"scripts": {
"build": "node-gyp rebuild",
"compile": "rm ./todo && npm run configure && npm run build && ~/nodec --tmpdir=../.tmp -o todo ./cli.js",
"configure": "node-gyp configure",
"docs": "jsdoc ./*.js ./**/*.js -R ./README.md -d docs/ && cp ./todo.png docs/todo.png",
"install": "node-gyp rebuild",
"lint": "eslint .",
"pretest": "npm run build",
"preversion": "npm run lint && npm run docs",
"start": "node cli.js ./",
"test": "mocha --trace-warnings",
"test-napi": "node --napi-modules ./test/binding.test.js"
},
"bin": {
"whatodo": "./cli.js",
"todo": "./cli.js"
},
"gypfile": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Parellin-Technologies-LLC/whatodo.git"
},
"keywords": [
"whatodo",
"todo",
"comments",
"tasks",
"organization"
],
"author": "Parellin Technologies LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/Parellin-Technologies-LLC/whatodo/issues"
},
"homepage": "https://github.com/Parellin-Technologies-LLC/whatodo#readme",
"dependencies": {
"ansi-styles": "^3.2.1",
"bindings": "1.5.0",
"node-addon-api": "1.6.2",
"node-gyp": "3.8.0"
},
"devDependencies": {
"chai": "4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^4.16.0",
"mocha": "5.2.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}