Move samples/js/perf to js/perf (#2426)

This commit is contained in:
Erik Arvidsson
2016-08-23 17:51:27 -07:00
committed by GitHub
parent 1090ba4090
commit 103078b366
22 changed files with 57 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
// Copyright 2016 Attic Labs, Inc. All rights reserved.
// Licensed under the Apache License, version 2.0:
// http://www.apache.org/licenses/LICENSE-2.0
module.exports = require('@attic/eslintrc');
// Allow console
module.exports.rules['no-console'] = 0;
// Used to distinguish between user errors and exceptions.
module.exports.rules['no-throw-literal'] = 0;
+3
View File
@@ -0,0 +1,3 @@
node_modules
.babelrc
.flowconfig
+45
View File
@@ -0,0 +1,45 @@
{
"name": "noms-perf-samples",
"version": "0.0.0",
"description": "Shared node modules",
"license": "Apache-2.0",
"dependencies": {
"@attic/eslintrc": "^3.1.0",
"@attic/noms": "file:../../js/noms",
"@attic/webpack-config": "^2.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",
"babel-regenerator-runtime": "^6.5.0",
"chai": "^3.5.0",
"classnames": "^2.1.3",
"csv": "^1.1.0",
"flickr-oauth-and-upload": "^0.8.0",
"flow-bin": "^0.30.0",
"http-server": "^0.9.0",
"humanize": "^0.0.9",
"mocha": "^2.5.3",
"mz": "^2.4.0",
"node-fetch": "^1.5.2",
"oauth": "^0.9.14",
"react-dom": "^15.2.0",
"react": "^15.2.0",
"request": "^2.72.0",
"varint": "^4.0.0",
"yargs": "^4.7.1"
},
"scripts": {
"preinstall": "ln -sf ../noms/.babelrc && ln -sf ../noms/.flowconfig",
"test": "exit 0"
}
}