mirror of
https://github.com/dolthub/dolt.git
synced 2026-04-25 03:34:05 -05:00
0d6bd01810
This is a breaking change to the JS API. HashSpec and parseObjectSpec have been removed in favour of PathSpec, and parse errors now throw SyntaxError instead of silently failing (this matches JSON.parse).
60 lines
2.3 KiB
JSON
60 lines
2.3 KiB
JSON
{
|
|
"name": "@attic/noms",
|
|
"license": "Apache-2.0",
|
|
"version": "58.0.0",
|
|
"description": "Noms JS SDK",
|
|
"repository": "https://github.com/attic-labs/noms",
|
|
"main": "dist/commonjs/noms.js",
|
|
"engines": {
|
|
"node": ">=5.11",
|
|
"npm": ">=3"
|
|
},
|
|
"dependencies": {
|
|
"asmcrypto.js-sha512": "^0.0.1",
|
|
"babel-regenerator-runtime": "^6.5.0",
|
|
"babel-runtime": "^6.9.2",
|
|
"text-encoding-utf-8": "^1.0.1",
|
|
"tingodb": "^0.4.2"
|
|
},
|
|
"devDependencies": {
|
|
"@attic/eslintrc": "^3.1.0",
|
|
"babel-cli": "^6.10.1",
|
|
"babel-core": "^6.10.4",
|
|
"babel-generator": "^6.11.0",
|
|
"babel-plugin-syntax-async-functions": "^6.8.0",
|
|
"babel-plugin-syntax-flow": "^6.8.0",
|
|
"babel-plugin-transform-async-to-generator": "^6.8.0",
|
|
"babel-plugin-transform-class-properties": "^6.10.2",
|
|
"babel-plugin-transform-es2015-destructuring": "^6.9.0",
|
|
"babel-plugin-transform-es2015-modules-commonjs": "^6.10.3",
|
|
"babel-plugin-transform-es2015-parameters": "^6.9.0",
|
|
"babel-plugin-transform-runtime": "^6.6.0",
|
|
"babel-preset-es2015": "^6.9.0",
|
|
"babel-preset-react": "^6.11.1",
|
|
"chai": "^3.5.0",
|
|
"chokidar": "^1.6.0",
|
|
"commander": "^2.9.0",
|
|
"flow-bin": "0.30.0",
|
|
"fs-extra": "^0.30.0",
|
|
"mocha": "^2.5.3"
|
|
},
|
|
"scripts": {
|
|
"pretest": "eslint src/ && flow src/",
|
|
"ts": "mocha --ui tdd --timeout=4000 --reporter spec --slow=50 --invert --grep='LONG:' --compilers js:babel-core/register src/*-test.js",
|
|
"test": "mocha --ui tdd --timeout=6000 --reporter dot --compilers js:babel-core/register src/*-test.js",
|
|
"prepublish": "rm -rf dist/ && npm run compile && npm run copy-flow-files",
|
|
"compile": "npm run compile-to-commonjs",
|
|
"compile-to-commonjs": "BABEL_ENV=production babel -d dist/commonjs src/ > /dev/null",
|
|
"copy-flow-files": "npm run copy-flow-files-commonjs",
|
|
"copy-flow-files-commonjs": "node build/copy-flow-files.js -d dist/commonjs/ src/"
|
|
},
|
|
"browser": {
|
|
"./src/bytes.js": "./src/browser/bytes.js",
|
|
"./dist/commonjs/bytes.js": "./dist/commonjs/browser/bytes.js",
|
|
"./src/fetch.js": "./src/browser/fetch.js",
|
|
"./dist/commonjs/fetch.js": "./dist/commonjs/browser/fetch.js",
|
|
"./src/put-cache.js": "./src/browser/put-cache.js",
|
|
"./dist/commonjs/put-cache.js": "./dist/commonjs/browser/put-cache.js"
|
|
}
|
|
}
|