-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1012 Bytes
/
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
{
"name": "steno_dictionary",
"version": "1.0.0",
"description": "My personal steno dictionary",
"main": "commit_diff.js",
"scripts": {
"commit-diff": "node -e 'require(\"./commit_diff.js\").commitDiff()'",
"debounced-commit-diff": "node -e 'require(\"./commit_diff.js\").debouncedCommitDiff()'",
"start": "npm run commit-diff && npm run watch",
"watch": "npm-watch debounced-commit-diff"
},
"repository": {
"type": "git",
"url": "git+https://github.com/morinted/steno_dictionary.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/morinted/steno_dictionary/issues"
},
"homepage": "https://github.com/morinted/steno_dictionary#readme",
"devDependencies": {},
"dependencies": {
"deep-object-diff": "^1.1.0",
"lodash": "^4.17.15",
"npm-watch": "^0.6.0",
"simple-git": "^1.92.0"
},
"watch": {
"debounced-commit-diff": {
"patterns": [
"*.json"
],
"runOnChangeOnly": true
}
}
}