-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
88 lines (88 loc) · 2.48 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "audio-network",
"version": "2.0.0-rc",
"homepage": "https://audio-network.rypula.pl",
"description": "Data transmission over sound waves written in JavaScript without any dependencies. All you need is just microphone, speakers and the browser!",
"keywords": [
"transmission over sound",
"Web Audio API",
"audio",
"network",
"sound",
"waves",
"transmit",
"receive",
"binary data",
"PSK",
"QPSK",
"BPSK",
"DFT",
"OFDM",
"phase shift keying",
"discrete fourier transform",
"orthogonal frequency division multiplexing",
"modem"
],
"author": "Robert Rypuła",
"license": "MIT",
"scripts": {
"dev": "npm run clean && webpack-dev-server --env.DEVELOPMENT --open",
"build": "npm run clean && npm run test && npm run lint && npm run lint:tsfmt:verify && webpack --env.PRODUCTION",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint:tsfmt:verify": "tsfmt --verify --no-tsfmt --no-tslint --no-tsconfig --no-vscode",
"lint:tsfmt:replace": "tsfmt --replace --no-tsfmt --no-tslint --no-tsconfig --no-vscode",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"clean": "rimraf dist && rimraf coverage",
"npm-check": "npm-check --skip-unused",
"npm-check:u": "npm-check --skip-unused -u",
"md2html": "node ./scripts/md2html.js"
},
"main": "dist/audio-network-v2.0.0-rc.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/robertrypula/AudioNetwork.git"
},
"bugs": {
"url": "https://github.com/robertrypula/AudioNetwork/issues"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testEnvironment": "node"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"coveralls": "^3.0.1",
"jest": "^22.4.3",
"npm-check": "^5.7.0",
"rimraf": "^2.6.2",
"rr-tsdi": "^1.0.3",
"showdown": "^1.8.6",
"ts-jest": "^22.4.5",
"ts-loader": "^4.3.0",
"tslint": "^5.10.0",
"typescript": "^2.8.3",
"typescript-formatter": "^7.2.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.8.1",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4",
"wrapper-webpack-plugin": "^2.0.0"
}
}