Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
883 B
36 lines
883 B
{
|
|
"name": "ordered-binary",
|
|
"author": "Kris Zyp",
|
|
"version": "1.1.3",
|
|
"description": "Conversion of JavaScript primitives to and from Buffer with binary order matching natural primitive order",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "http://github.com/kriszyp/ordered-binary"
|
|
},
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"prepare": "rollup -c",
|
|
"test": "mocha tests -u tdd"
|
|
},
|
|
"type": "module",
|
|
"module": "index.js",
|
|
"exports": {
|
|
".": {
|
|
"require": "./dist/index.cjs",
|
|
"import": "./index.js"
|
|
},
|
|
"./index.js": {
|
|
"require": "./dist/index.cjs",
|
|
"import": "./index.js"
|
|
}
|
|
},
|
|
"typings": "./index.d.ts",
|
|
"optionalDependencies": {},
|
|
"devDependencies": {
|
|
"@types/node": "latest",
|
|
"chai": "^4",
|
|
"mocha": "^8.1.3",
|
|
"rollup": "^1.20.3"
|
|
}
|
|
}
|
|
|