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.
 
 
 
 

51 lines
1.1 KiB

{
"name": "json-source-map",
"version": "0.6.1",
"description": "Parse/stringify JSON and provide source-map for JSON-pointers to all nodes",
"main": "index.js",
"scripts": {
"eslint": "eslint index.js spec",
"test-spec": "mocha spec -R spec",
"test-debug": "mocha spec -R spec --debug-brk",
"test": "npm run eslint && nyc npm run test-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/epoberezkin/json-source-map.git"
},
"keywords": [
"JSON",
"parse",
"stringify",
"json-pointer",
"source-map",
"BigInt",
"ES6",
"Map",
"Set",
"TypedArray"
],
"author": "Evgeny Poberezkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/epoberezkin/json-source-map/issues"
},
"homepage": "https://github.com/epoberezkin/json-source-map#readme",
"devDependencies": {
"coveralls": "^2.11.15",
"eslint": "^6.1.0",
"json-pointer": "^0.6.0",
"mocha": "^3.2.0",
"nyc": "^10.0.0",
"pre-commit": "^1.2.2"
},
"nyc": {
"exclude": [
"spec"
],
"reporter": [
"lcov",
"text-summary"
]
}
}