-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.08 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
{
"name": "falexa",
"version": "2.0.3",
"description": "Create your own verbal commands that map to custom Javascript functions",
"engineStrict": true,
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"engines": {
"node": ">= 8.9.0"
},
"keywords": [
"alexa",
"alexa-skill",
"jarvis",
"speech",
"recognition",
"voice",
"synthesis",
"verbal",
"command",
"fuzzy",
"regex"
],
"repository": {
"type": "git",
"url": "https://github.com/gittyeric/FAlexa"
},
"devDependencies": {
"@types/jest": "~22.2.3",
"@types/leven": "^2.1.2",
"@types/lodash": "^4.14.159",
"@types/node": "^8.10.62",
"babel-jest": "^23.6.0",
"jest": "^22.4.4",
"rimraf": "^2.6.3",
"ts-jest": "^22.4.6",
"tslint": "~5.9.1",
"tslint-microsoft-contrib": "~5.0.3",
"tsutils": "~2.26.2",
"typescript": "^3.0.0",
"uglifyjs": "^2.4.11"
},
"scripts": {
"clean": "rimraf coverage build tmp dist",
"build": "npm run build:ts-js && npm run build:ts-types && npm run build:browserify && npm run build:min",
"build:ts-js": "tsc -p tsconfig.json",
"build:ts-types": "tsc -p tsconfig.release.json",
"build:browserify": "cd ./lib && browserify ./src/browser.js --standalone Falexa -o ../dist/falexa.browser.js",
"build:min": "uglifyjs ./dist/falexa.browser.js -o ./dist/falexa.browser.min.js --compress",
"deploy-dry": "npm run build & npm run lint & npm run test && git status",
"watch": "tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"pretest": "npm run lint",
"test": "npm run test-only",
"test-only": "jest --coverage",
"benchmark": "jest --coverage --config jest.benchmark.config.js",
"test:watch": "jest --watch"
},
"author": "Eric <[email protected]>",
"license": "APLv2",
"dependencies": {
"browserify": "^16.5.2",
"leven": "^2.1.0",
"lodash": "^4.17.20",
"metaphone": "^1.0.6",
"talisman": "^0.20.0",
"tslib": "^2.0.1",
"uglify-es": "^3.3.10",
"words-to-numbers": "^1.5.1"
}
}