-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
59 lines (59 loc) · 2 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
{
"name": "sdl_javascript_suite",
"version": "1.8.0",
"description": "The official JavaScript SDK for SmartDeviceLink.",
"main": "/lib/js/dist/SDL.js",
"engines": {
"node": ">= 10.24.1"
},
"directories": {
"example": "examples",
"lib": "lib"
},
"scripts": {
"build": "node lib/node/teardown.js && npm run build-rpcs && node lib/js/generate.js && node lib/node/setup.js && node lib/node/generate.js && node_modules/.bin/rollup -c && node lib/node/teardown.js",
"build-rpcs": "python3 generator/generator.py -y",
"test": "mocha './tests/node/**/*.js'",
"test-managers": "mocha './tests/managers/**/*.js'",
"lint": "node_modules/.bin/eslint \"./lib/js/**\" \"./lib/node/**\" \"./tests/**/*.js\"",
"lint-js": "node_modules/.bin/eslint \"./lib/js/**\"",
"lint-node": "node_modules/.bin/eslint \"./lib/node/**\"",
"lint-tests": "node_modules/.bin/eslint \"./tests/**/*.js\"",
"build-third-party": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartdevicelink/sdl_javascript_suite.git"
},
"keywords": [
"SDL",
"SmartDeviceLink",
"SDK"
],
"author": "Livio",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/smartdevicelink/sdl_javascript_suite/issues"
},
"homepage": "https://github.com/smartdevicelink/sdl_javascript_suite#readme",
"devDependencies": {
"@babel/preset-env": "^7.19.1",
"@crokita/rollup-plugin-node-builtins": "^2.1.3",
"@crokita/rollup-plugin-node-globals": "^1.4.2",
"babel-plugin-transform-async-to-promises": "^0.8.18",
"bson": "^4.5.3",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^8.23.1",
"eslint-plugin-jsdoc": "^37.9.7",
"mocha": "^9.2.2",
"rollup": "^2.79.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-babel-minify": "^10.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^9.2.4",
"ws": "^8.8.1"
}
}