-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.27 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
{
"name": "@connectedcars/rootfs-diff",
"version": "1.5.0",
"description": "Tool to compare yocto root fs to see what grows a binary diff",
"bin": {
"rootfs-diff": "build/dist/bin/rootfs-diff.js"
},
"main": "build/dist/src/index.js",
"scripts": {
"test": "TZ=UTC jest",
"cov": "TZ=UTC jest --coverage=true",
"build": "build src bin",
"build:js": "build --skip-typings src bin",
"build:types": "tsc --noEmit",
"lint": "eslint './src/**/*.{ts,tsx}' './bin/**/*.{ts,tsx}'",
"lint:fix": "eslint --fix './src/**/*.{ts,tsx}'",
"ci-jest": "TZ=UTC jest --silent --no-color --json 2> /dev/null; res=$?; echo; exit $res",
"ci-audit": "npm audit --json || true",
"ci-eslint": "eslint --format json './src/**/*.{ts,tsx}' './bin/**/*.{ts,tsx}' || true",
"prepare": "echo \"Make npm install devDependencies for this package by having a prepare script\"",
"prepack": "npm run build",
"prepublishOnly": "rm -rf build"
},
"files": [
"build/dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/connectedcars/rootfs-diff.git"
},
"author": "Troels Liebe Bentsen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/connectedcars/rootfs-diff/issues"
},
"homepage": "https://github.com/connectedcars/rootfs-diff#readme",
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.19.6",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-numeric-separator": "7.18.6",
"@babel/plugin-proposal-optional-chaining": "7.18.9",
"@babel/preset-env": "7.19.4",
"@babel/preset-typescript": "7.18.6",
"@connectedcars/setup": "^0.17.3",
"@types/jest": "29.2.2",
"@types/yargs": "^17.0.13",
"@typescript-eslint/eslint-plugin": "5.42.0",
"@typescript-eslint/parser": "5.42.0",
"babel-jest": "29.2.2",
"eslint": "8.26.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"jest": "29.2.2",
"jest-circus": "^29.2.2",
"prettier": "2.7.1",
"typescript": "4.8.4"
},
"engines": {
"node": ">=12.10.0"
},
"dependencies": {
"yargs": "^17.6.2"
}
}