-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
{
"name": "butler.js",
"version": "0.0.1-beta-0.1.8",
"description": "Butler is your I/O javascript voice driven major-domo",
"scripts": {
"js-min": "./tasks/banner | xargs -0 -I banner uglifyjs src/js/index.js --preamble banner -c -m --screw-ie8 -p relative --source-map dist/butler.min.js.map -o dist/butler.min.js",
"lint": "eslint -c .eslintrc src && jscs -c .jscsrc src",
"precommit": "npm run-script lint"
},
"keywords": [
"butler",
"major-domo",
"javascript",
"js",
"bot",
"speech recognition",
"voice commands",
"voice driven",
"customizable"
],
"files": [
"dist/butler.min.js"
],
"repository": {
"type": "git",
"url": "https://github.com/720kb/butler.git"
},
"author": "Filippo Oretti <[email protected]>",
"contributors": [
"Dario Andrei <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": ""
},
"homepage": "",
"dependencies": {},
"devDependencies": {
"eslint": "*",
"husky": "*",
"jscs": "*",
"uglifyjs": "*"
}
}