-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
55 lines (55 loc) · 1.42 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
{
"name": "node-irsdk",
"version": "2.1.6",
"description": "iRacing SDK implementation for Node.js",
"main": "src/node-irsdk.js",
"scripts": {
"install": "prebuild-install || node-gyp rebuild",
"prebuild": "prebuild --all --strip",
"prebuild-upload": "prebuild --all --strip -u %GH_TOKEN%",
"test": "npm run lint && npm run mocha",
"mocha": "mocha src/**/*-spec.js",
"lint": "standard",
"doc": "jsdoc2md -d 3 -t src/doc/README.hbs --partial src/doc/examples.hbs -m none -g none src/node-irsdk.js src/JsIrSdk.js src/IrSdkConsts.js > README.md",
"ready": "npm test && node test/smoke-test.js && npm run doc",
"release-notes": "node_modules/.bin/changelog node-irsdk latest"
},
"keywords": [
"iracing"
],
"author": "Antti Pihlaja",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/apihlaja/node-irsdk.git"
},
"engines": {
"node": ">=6"
},
"dependencies": {
"js-yaml": "3.*",
"nan": "2.14.0",
"prebuild-install": "^5.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"changelog": "1.*",
"jsdoc-to-markdown": "^5.0.0",
"mocha": "^6.1.4",
"moment": "^2.19.3",
"prebuild": "9.0.1",
"sandboxed-module": "2.0.*",
"sinon": "^7.3.2",
"sinon-chai": "3.*",
"standard": "8.6.0"
},
"standard": {
"globals": [
"it",
"describe",
"beforeEach",
"afterEach",
"sinon"
]
}
}