-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 966 Bytes
/
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
{
"name": "boooa",
"version": "0.1.0",
"main": "./lib/index.js",
"author": "Victor Magarlamov <[email protected]>",
"description": "Library to stringify an array of objects with similar schema to JSON string with reducing the size",
"license": "MIT",
"scripts": {
"test": "jest",
"prebuild": "rm -rf lib",
"build": "./node_modules/.bin/babel src --out-dir lib",
"prepublish": "yarn run test && yarn run build"
},
"engines": {
"node": ">8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/victor-magarlamov/boooa"
},
"bugs": {
"url": "https://github.com/victor-magarlamov/boooa/issues"
},
"homepage": {
"url": "https://github.com/victor-magarlamov/boooa"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"babel-jest": "^27.4.5",
"jest": "^27.4.5",
"istanbul-badges-readme": "^1.8.1"
}
}