forked from SkippyZA/ibt-telemetry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1016 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
38
39
40
41
{
"name": "ibt-telemetry",
"version": "1.1.1",
"description": "iRacing ibt parser",
"keywords": [
"iracing",
"irsdk",
"ibt",
"telemetry"
],
"author": "Steven Inskip",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/SkippyZA/ibt-telemetry.git"
},
"main": "lib/index.js",
"scripts": {
"compile": "npm run lint && babel -d lib/ src/",
"lint": "standard -v \"src/**/*.js\"",
"test:dependencies": "depcruise --validate .dependency-cruiser.js src",
"prepublish": "npm run compile"
},
"dependencies": {
"formidable": "^3.5.1",
"fs": "^0.0.1-security",
"js-yaml": "^4.1.0",
"ramda": "^0.29.1",
"rxjs": "^7.8.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"dependency-cruiser": "15.3.0",
"eslint-plugin-react": "^7.33.2",
"jsx-ast-utils": "^3.3.5",
"standard": "^17.1.0"
}
}