preserves/implementations/javascript/package.json

25 lines
584 B
JSON
Raw Normal View History

{
"name": "preserves",
2020-08-05 10:47:27 +00:00
"version": "0.3.1",
2018-11-13 14:08:55 +00:00
"description": "Experimental data serialization format",
2019-08-31 20:04:52 +00:00
"homepage": "https://gitlab.com/preserves/preserves",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
2019-08-31 20:04:52 +00:00
"repository": "gitlab:preserves/preserves",
"scripts": {
"test": "mocha",
"cover": "nyc --reporter=html mocha"
},
"main": "src/index.js",
"author": "Tony Garnock-Jones <tonyg@leastfixedpoint.com>",
"devDependencies": {
2020-10-26 13:14:54 +00:00
"mocha": "^8.2.0",
2019-08-31 20:18:21 +00:00
"nyc": "^14.1.1"
},
"dependencies": {
"immutable": "^4.0.0-rc.12"
}
}