-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
40 lines (40 loc) · 1.18 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
{
"name": "cros-dpsl-js",
"version": "1.4.1",
"description": "Diagnostics processor support library for ChromeOS",
"main": "./src/dpsl.js",
"exports": "./src/dpsl.js",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "node_modules/.bin/node src/dpsl.js",
"lint": "node_modules/.bin/eslint .",
"test": "node_modules/.bin/node node_modules/.bin/jest --coverage",
"script:ci": "sh ./scripts/ci.sh",
"script:cd": "sh ./scripts/cd.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoogleChromeLabs/telemetry-support-extension-for-chromeos.git"
},
"keywords": [
"dpsl",
"chromeos"
],
"publishConfig": {
"registry": "https://wombat-dressing-room.appspot.com"
},
"author": "ChromeOS Health Service Team <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GoogleChromeLabs/telemetry-support-extension-for-chromeos/issues"
},
"homepage": "https://github.com/GoogleChromeLabs/telemetry-support-extension-for-chromeos#readme",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"node": "^16.6.1",
"jest": "^27.0.6"
}
}