mirror of
https://github.com/dolthub/dolt.git
synced 2026-01-29 10:41:05 -06:00
41 lines
1.3 KiB
JSON
41 lines
1.3 KiB
JSON
{
|
|
"name": "noms",
|
|
"main": "dist/noms.js",
|
|
"jsnext:main": "src/noms.js",
|
|
"dependencies": {
|
|
"rusha": "^0.8.3",
|
|
"text-encoding-utf-8": "^1.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "^6.3.15",
|
|
"babel-core": "^6.3.15",
|
|
"babel-eslint": "^4.1.5",
|
|
"babel-plugin-syntax-async-functions": "^6.3.13",
|
|
"babel-plugin-syntax-flow": "^6.3.13",
|
|
"babel-plugin-transform-async-to-generator": "^6.3.13",
|
|
"babel-plugin-transform-class-properties": "^6.3.13",
|
|
"babel-plugin-transform-es2015-destructuring": "^6.3.15",
|
|
"babel-plugin-transform-es2015-modules-commonjs": "^6.3.16",
|
|
"babel-plugin-transform-es2015-parameters": "^6.3.13",
|
|
"babel-polyfill": "^6.3.14",
|
|
"babel-preset-es2015": "^6.3.13",
|
|
"babel-preset-react": "^6.3.13",
|
|
"chai": "^3.2.0",
|
|
"chokidar": "^1.4.0",
|
|
"eslint": "^1.9.0",
|
|
"eslint-plugin-react": "^3.8.0",
|
|
"flow-bin": "^0.19.1",
|
|
"fs-extra": "^0.26.2",
|
|
"mocha": "^2.3.0"
|
|
},
|
|
"scripts": {
|
|
"start": "node build/copy-flow-files.js -w & babel -w src/ -d dist/",
|
|
"build": "node build/copy-flow-files.js && BABEL_ENV=production babel src/ -d dist/",
|
|
"pretest": "eslint src/ && flow src/",
|
|
"test": "mocha --ui tdd --reporter dot --require babel-polyfill --compilers js:babel-core/register src/"
|
|
},
|
|
"browser": {
|
|
"./dist/fetch.js": "./dist/browser/fetch.js"
|
|
}
|
|
}
|