-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.72 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
{
"name": "auroraapi",
"version": "0.1.2",
"description": "Aurora SDK for NodeJS",
"main": "dist/index",
"typings": "dist/index.d.ts",
"scripts": {
"prepack": "yarn test && yarn build && cp -r dist/* .",
"prepublishOnly": "yarn test && yarn build && cp -r dist/* .",
"postpack": "python scripts/postpack.py",
"postpublish": "python scripts/postpack.py",
"precommit": "yarn build && yarn test && yarn docs && lint-staged -c lint-staged.json",
"docs": "typedoc --ignoreCompilerErrors --mode modules --theme default --out docs --exclude \"**/tests/**/*.ts\" \"lib\"",
"build": "rm -rf dist && tsc --pretty --declaration",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"test": "mocha -r ts-node/register \"lib/tests/**/*.ts\"",
"clean": "rm -rf dist *.tgz *.tar.gz tmp yarn-error.log && python scripts/postpack.py"
},
"repository": {
"type": "git",
"url": "git+https://github.com/auroraapi/aurora-nodejs.git"
},
"keywords": [
"aurora",
"speech",
"language",
"text",
"recognition",
"api",
"sdk"
],
"author": "Nikhil Kansal <nikhil@auroraapi.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/auroraapi/aurora-nodejs/issues"
},
"homepage": "https://github.com/auroraapi/aurora-nodejs#readme",
"engines": {
"node": ">=6.9.0"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^5.0.0",
"@types/node": "^9.4.7",
"chai": "^4.1.2",
"husky": "^0.14.3",
"lint-staged": "^7.0.5",
"mocha": "^5.0.1",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"typedoc": "^0.11.1",
"typescript": "^2.7.2"
},
"dependencies": {
"axios": "^0.17.1",
"node-portaudio": "^0.4.8"
}
}