-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.74 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
{
"name": "@connectedcars/buffify",
"version": "0.3.1",
"description": "Create stable buffer from object",
"main": "./build/dist/src/index.js",
"scripts": {
"test": "TZ=UTC jest",
"cov": "TZ=UTC jest --coverage=true",
"build": "build src",
"build:js": "build --skip-typings src",
"build:types": "tsc --noEmit",
"lint": "eslint './src/**/*.{ts,tsx}'",
"lint:fix": "eslint --fix './src/**/*.{ts,tsx}'",
"ci-auto": "checks auto --hard-fail",
"prepare": "echo \"Make npm install devDependencies for this package by having a prepare script\"",
"prepack": "npm run build",
"prepublishOnly": "rm -rf build"
},
"repository": {
"type": "git",
"url": "[email protected]:connectedcars/node-buffify.git"
},
"author": "Troels Liebe Bentsen<[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.12.16",
"@babel/core": "7.12.16",
"@babel/plugin-proposal-class-properties": "7.12.13",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.13",
"@babel/plugin-proposal-numeric-separator": "7.12.13",
"@babel/plugin-proposal-optional-chaining": "7.12.16",
"@babel/preset-env": "7.12.16",
"@babel/preset-typescript": "7.12.16",
"@connectedcars/setup": "^0.13.0",
"@connectedcars/test": "^0.16.0",
"@types/jest": "26.0.20",
"@typescript-eslint/eslint-plugin": "4.15.1",
"@typescript-eslint/parser": "4.15.1",
"babel-jest": "26.6.3",
"eslint": "7.20.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "26.6.3",
"jest-circus": "^26.6.3",
"prettier": "2.2.1",
"typescript": "4.1.5"
},
"engines": {
"node": ">=10.15.0"
}
}