Browse Source

git ignore added and package created

fix/check-version v0.0.1
Jordi Baylina 2 years ago
parent
commit
4896fc0663
No known key found for this signature in database GPG Key ID: 7480C80C1BE43112
3 changed files with 1482 additions and 0 deletions
  1. +65
    -0
      .gitignore
  2. +1383
    -0
      package-lock.json
  3. +34
    -0
      package.json

+ 65
- 0
.gitignore

@ -0,0 +1,65 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
# nyc test coverage
.nyc_output
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules/
jspm_packages/
# Typescript v1 declaration files
typings/
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variables file
.env
# next.js build output
.next
tmp
.DS_Store

+ 1383
- 0
package-lock.json
File diff suppressed because it is too large
View File


+ 34
- 0
package.json

@ -0,0 +1,34 @@
{
"name": "circom_tester",
"version": "0.0.1",
"description": "Tools for testing circom circuits.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iden3/circom_tester.git"
},
"keywords": [
"circom",
"test",
"snarkjs",
"iden3"
],
"author": "Albert Rubio",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/iden3/circom_tester/issues"
},
"homepage": "https://github.com/iden3/circom_tester#readme",
"dependencies": {
"chai": "^4.3.4",
"child_process": "^1.0.2",
"ffjavascript": "^0.2.38",
"fnv-plus": "^1.3.1",
"r1csfile": "^0.0.32",
"tmp-promise": "^3.0.2",
"util": "^0.12.4"
}
}

Loading…
Cancel
Save